路由重定向

97 词

Vue 路由-重定向#

问题:网页打开,url 默认是/路径,未匹配到组件时,会出现空白
028路由重定向_cut_1702020779581
说明:重定向-匹配到 path 后,强制跳转 path 路径
语法

1
2
3
4
5
{
path:匹配路径,
redirect:重定向到的路径,
// ...
}
1
2
3
4
5
6
7
8
const router = new VueRouter({
routes: [
// 访问到/时重定向到/home
{ path: '/', redirect: '/home' },
{ path: '/home', component: Home },
{ path: '/search/:words?', component: Search },
],
});