

解决办法
/* main.js */
router.beforeEach((to, from, next) => {
if (to.meta.title) {
document.title = to.meta.title
}
next()
})
注意事项:必须放在路由挂载前不然会引起页面刷新但是title不更新的问题

// index.html
<title><%= htmlWebpackPlugin.options.title %></title>
设置成 ⬇
<title></title>