routes.push({ path: '/:catchAll(.*)', redirect: '/404' })
来源:8-10 业务落地:定义页面权限控制动作,实现页面权限受控-2
qq_Simpleisbeau_0
2022-04-09
(1)catchAll是啥意思,跟官网{ path: ‘/:pathMatch(.)’, name: ‘NotFound’, component: NotFound }的pathMatch()啥区别
(2)这个路由对象为啥不能直接添加到publicRoutes里面啊,要动态添加,是啥原因,请具体讲一下。
写回答
1回答
-
Sunday
2022-04-09
你好
path: '/:catchAll(.*)' 表示剩余的所有路由匹配
因为咱们的路由需要动态添加啊,都加到 publicRoutes 里面,权限不就都做了吗?
032022-04-10
相似问题