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 作为后端支持,主要与数据进行交互查询以及控制数据输出

参考技术A

    router.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?的主要内容,如果未能解决你的问题,请参考以下文章

vue-router高级用法

vue-router2.0

vue-router组件里面点击一个按钮跳转到一个新的组件该怎么实现

使用 vue-router 时如何更改页面标题?

vue.js项目构建之vue-router2.0的使用

全局导航守卫