Vue3 Router任意页面重定向
2021-03-27 本文已影响0人
曾祥辉
Vue2
routes: [
{
path: '*',
redirect: '/'
}
]
Vue3
routes: [
{
path: '/:pathMatch(.*)*',
redirect: '/'
}
]
Vue2
routes: [
{
path: '*',
redirect: '/'
}
]
Vue3
routes: [
{
path: '/:pathMatch(.*)*',
redirect: '/'
}
]