vue-router 怎么改变网站的title?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue-router 怎么改变网站的title?相关的知识,希望对你有一定的参考价值。
在mapping中添加自定义字段,比如title,然后在afterEach里面做:
router.map(
'/pathA':
name: 'path-a',
title: 'title path',
//
);
router.afterEach(function (transition)
if (transition.to.title)
document.title = transition.to.title
);
注意,嵌套路由子路由会继承这个title,可以在子路由中再定义title就可以了
vue-router怎么定义首页?f方式如下:
vuejs 作为前端模板,主要需要使用 vue,vuex,vue-router
express 作为后端支持,主要与数据进行交互查询以及控制数据输出
参考技术Arouter.map'/pathA'
name: 'path-a',
title: 'title path'
router.afterEach(function (transition)
if (transition.to.title)
document.title = transition.to.title
router.beforeEach((to, from, next) =>
document.title = to.meta.titlenext
router.afterEach(function (transition)
if (transition.to.title)
document.title = transition.to.title。
以上是关于vue-router 怎么改变网站的title?的主要内容,如果未能解决你的问题,请参考以下文章