fix: fixed redirect path regex (#2933)

This commit is contained in:
李小斐 2020-01-11 10:25:59 +08:00 committed by 花裤衩
parent 39b2b9b872
commit dc4832ad5b
1 changed files with 1 additions and 1 deletions

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')
} }
] ]