vue-router 跳转页面的时候,修改页面的title为对应的路由

 routes: [
    {
      // 默认的首页
      path: '/',
      name: 'Home',
      component: Home,
      meta: {
        index: 0,
        title: '首页'
      }
    },
    {
      // 选择城市
      path: '/city',
      name: 'City',
      component: City,
      meta: {
        index: 1,
        title: '选择城市'
      }
    }
]

在main.js中获取路由的title,去替换为页面的title

添加一个导航守卫, 拦截和替换路由中配置了title名的路由

router.beforeEach((to, from, next) => {
  /* 路由发生变化修改页面title */
  if (to.meta.title) {
    document.title = to.meta.title
  }
  next()
})

 

Logo

前往低代码交流专区

更多推荐