面包屑

1.{{title}}
2.data中
//当前路由的title,这个title是在router/index.js里meta中自己定义的
title: this.$router.history.current.meta.title,
3.
watch: {
//创建监听,当出现页面的跳转时,自动刷新面包屑导航上的文字内容
$route(to, from) {
var temp = [];
for(var o of to.matched){
if(o){
temp.push(o.meta.title);
}
}
this.title = temp.join(" > ");
},

},
原文地址:https://www.cnblogs.com/zhouyx/p/11840633.html