问题
网页打开时, url 默认是 / 路径,未匹配到组件时,会出现空白
解决方案
重定向 → 匹配 / 后, 强制跳转 /home 路径
语法
{ path: 匹配路径, redirect: 重定向到的路径 },
比如:
{ path:'/' ,redirect:'/home' }
代码示例
const router = new VueRouter({
routes: [
{ path: '/', redirect: '/home'},
...
]
})