淘先锋技术网

首页 1 2 3 4 5 6 7

1、在路由加上tile名称
在这里插入图片描述
2、在main.js加上这些即可

router.beforeEach((to, from, next) => {
	if (to.meta.title) {
		document.title = to.meta.title
	}
	next()
})