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,
children: [
{
path: '/redirect/:path*',
path: '/redirect/:path(.*)',
component: () => import('@/views/redirect/index')
}
]