路由重定向redirect
1.router下index
配置映射规则中新增一个对象
{
// redirect路由重定向
path:'',
redirect:'/home' //重定向地址
}
2.history
因为默认是hash地址,url栏中不美观
http://localhost:8080/home#/home
改变history模式
router下index
const router = new VueRouter({ //步骤3创建实例
routes, //步骤4挂载路由映射
mode:'history'
})