25 lines
516 B
TypeScript
25 lines
516 B
TypeScript
const Layout = () => import("@/layout/index.vue");
|
|
|
|
export default {
|
|
path: "/airworthiness",
|
|
name: "airworthiness",
|
|
component: Layout,
|
|
redirect: "/airworthiness",
|
|
meta: {
|
|
icon: "ep:apple",
|
|
title: "适航资源",
|
|
rank: 2
|
|
},
|
|
children: [
|
|
{
|
|
path: "/airworthiness",
|
|
name: "airworthiness",
|
|
component: () => import("@/views/airworthiness/index.vue"),
|
|
meta: {
|
|
title: "适航资源",
|
|
roles: ["admin", "3"]
|
|
}
|
|
}
|
|
]
|
|
} satisfies RouteConfigsTable;
|