// 预授权路由表,分包名称:preAuth
import Layout from '@/layout'
export default {
path: "/pre-auth",
name: "PreAuth",
component: Layout,
children: [
{
path: "",
name: "PreAuthIndex",
component: () => import("@/views/pre-auth/index"),
},
{
path: "add",
name: "PreAuthAdd",
component: () => import("@/views/pre-auth/add"),
},
],
};
-
yanglilong authored005a4ec1