Vue2
routes: [
{
path: '*',
redirect: '/'
}
]
Vue3
routes: [
{
path: '/:pathMatch(.*)*',
redirect: '/'
}
]
Vue2
routes: [
{
path: '*',
redirect: '/'
}
]
Vue3
routes: [
{
path: '/:pathMatch(.*)*',
redirect: '/'
}
]