Vue modify title title

  1. Add the title name to the route

Insert picture description here

  1. Add in main.js
router.beforeEach((to, from, next) => {
    
    
	if (to.meta.title) {
    
    
		document.title = to.meta.title
	}
	next()
})

Guess you like

Origin blog.csdn.net/weixin_46329969/article/details/109330469