[vue] vue-router怎么重定向页面?
Activity
wenyejie commentedon Jun 27, 2019
路由中配置
redirect
属性zhengao261 commentedon Aug 6, 2019
也可以使用路由的别名来完成重定向
liuxiaoyang1 commentedon Nov 19, 2019
方法一:在routes:[{
{ path: '/a', redirect: '/b' }
}]
方法二:别名
routes: [
{ path: '/a', component: A, alias: '/b' }
]
zlqGitHub commentedon Dec 20, 2019
以一个实例来说,最直观:
lancelote-zpc commentedon Mar 18, 2020
lancelote-zpc commentedon Mar 18, 2020
Funqiewei commentedon Mar 10, 2022
routes:[{ path: "/", redirect: '/xxxxxx' }]