2022年3月20日
Vue路由hash与history模式(学习笔记)
配置:
const router = new VueRouter({
mode:'history',// 当前默认是hash模式,需要手动调整
routes:[
{
name:'guanyu',
path:'/about',
component:About,
meta:{isAuth:true,title:'关于'}
},
]