美文网首页
vue 动态改变title

vue 动态改变title

作者: Leiyansen | 来源:发表于2017-07-29 21:59 被阅读0次

和传统方式一样,可以在需要修改Title的页面组件中写入:
document.title = 'title'
如果需要设置默认title,可以在router回调中设置:

router.beforeEach((to, from, next) => {
    document.title = 'default title'
}

相关文章

网友评论

      本文标题:vue 动态改变title

      本文链接:https://www.haomeiwen.com/subject/evnclxtx.html