1
0
mirror of https://github.com/PanJiaChen/vue-element-admin.git synced 2025-04-06 03:57:53 +08:00

fix: fixed redirect path regex (#2933)

This commit is contained in:
李小斐 2020-01-11 10:25:59 +08:00 committed by 花裤衩
parent d634e2ae2f
commit 6850312e89

View File

@ -45,7 +45,7 @@ export const constantRoutes = [
hidden: true, hidden: true,
children: [ children: [
{ {
path: '/redirect/:path*', path: '/redirect/:path(.*)',
component: () => import('@/views/redirect/index') component: () => import('@/views/redirect/index')
} }
] ]