标签:main tle 并且 路由 new 改变 doc imp ons
想要实现vue动态改变页面title,需要给每个页面设置标题。并且在路由发生变化时修改页面title
const router = new Router({ mode: ‘history‘, routes: [ { path: ‘/index‘, name: ‘index‘, component: Index, meta:{ // 页面标题title title: ‘首页‘ } }, { path: ‘/content‘, name: ‘content‘, component: Content, meta:{ title: ‘内容‘ } } ] }) export default router
import router from ‘./router‘ router.beforeEach((to, from, next) => { /* 路由发生变化修改页面title */ if (to.meta.title) { document.title = to.meta.title } next() })
标签:main tle 并且 路由 new 改变 doc imp ons
原文地址:https://www.cnblogs.com/lguow/p/13321623.html