vueページのtitleの変更

1185 ワード

h 5では、ジャンプページに異なるページタイトルが表示されます.
 routes: [
    {   
      path: '/',
      name: 'Entrance',
      component: Entrance,
      meta: {
        title: '    '
      }
    }
  ]
  router.beforeEach((to, from, next) => {
  /*           title */
	  if (to.meta.title) {
	    document.title = to.meta.title
	  }
	  next()
  })


ルーティング内のmetaにtitleを追加し、グローバルルーティングガードがページのタイトルを変更します.