设置Vue单页面标题
{
path: '/Userlist',
name: 'Userlist',
component: Userlist,
meta: {
title: '员工列表'
}
},

watch:{
// 获取路由的相关数据参数
$route(){
console.log(this.$route.meta);
// 设置单页面 的 标题 内容
document.title = '海尔后台管理系统' +'---'+ this.$route.meta.title;
}
},
created(){
this.selectedKeys = [this.$route.path];//获取当前页面的路由参数信息,并设置选中状态
console.log('this.$rounte',this.$route);
},

浙公网安备 33010602011771号