路由重定向 2023-12-08 vue2 97 词 vuevue-routervue2 Vue 路由-重定向#问题:网页打开,url 默认是/路径,未匹配到组件时,会出现空白说明:重定向-匹配到 path 后,强制跳转 path 路径语法: 12345{ path:匹配路径, redirect:重定向到的路径, // ...} 12345678const router = new VueRouter({ routes: [ // 访问到/时重定向到/home { path: '/', redirect: '/home' }, { path: '/home', component: Home }, { path: '/search/:words?', component: Search }, ],}); 路由404 声明式导航