码迷,mamicode.com
首页 > Web开发 > 详细

动态设置html的title

时间:2018-11-03 16:32:41      阅读:308      评论:0      收藏:0      [点我收藏+]

标签:简单   from   ref   很多   outer   com   segment   定义   中心   

使用vue前端框架做,竟然丢弃了很多javascript和html的东西了。。
动态设置title的方法:

1.使用vue的自定义指令


<div v-title>{{htmltitle}}</div>
...
directives: {
  title: {
      inserted: function (el, binding) {
          document.title = el.innerText
          el.remove()
      }
  }
}

2.很简单


// 设置html title
document.title = sessionStorage.getItem('title')

3.router路由不同的title


...
routes: [
        {
            path: '/index',
            name: 'index',
            component: index,
            meta:{
                title:'首页'
            }
        },
        {
            path: '/user',
            name: 'user',
            component: user,
            meta:{
                title:'个人中心'
            }
        }
    ]
...
router.beforeEach((to, from, next) => {
    if (to.meta.title) {
        document.title = to.meta.title
    }
    next()
})

原文地址:https://segmentfault.com/a/1190000016801359

动态设置html的title

标签:简单   from   ref   很多   outer   com   segment   定义   中心   

原文地址:https://www.cnblogs.com/lalalagq/p/9900962.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!