You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
425 B
23 lines
425 B
import BasicLayout from "@/layouts/home"; |
|
|
|
const meta = {}; |
|
|
|
const pre = "ass-"; |
|
|
|
export default { |
|
path: "/ass", |
|
name: "ass", |
|
redirect: { |
|
name: `${pre}list` |
|
}, |
|
meta, |
|
component: BasicLayout, |
|
children: [ |
|
{ |
|
name: `${pre}list`, |
|
path: `list`, |
|
component: () => import("@/pages/ass/list"), |
|
meta: { title: "考核列表" } |
|
} |
|
] |
|
}; |