支持vue-router(version >= 2.0)导航切换更改document.title
Features
- 支持ios微信客户端的无效的bug. 参考自:http://blog.csdn.net/xuexiiphone/article/details/51966342
Installation
- via CDN
simple example
Document change title get title this is index page go to list this is list page go to index
- via NPM
$ npm install vue-document-title-plugin --save # Or $ yarn add vue-document-title-plugin
simple example
// main.js ; ; ; Vue; const router = routes: path: "/" // component: meta: title: "首页" // 导航到这个路由document.title会变成 首页【网站名称】 ; Vue;