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.
29 lines
607 B
29 lines
607 B
import BasicLayout from "@/layouts/home"; |
|
|
|
const meta = {}; |
|
|
|
const pre = "station-"; |
|
|
|
export default { |
|
path: "/station", |
|
name: "station", |
|
redirect: { |
|
name: `${pre}list` |
|
}, |
|
meta, |
|
component: BasicLayout, |
|
children: [ |
|
{ |
|
name: `${pre}list`, |
|
path: `list`, |
|
component: () => import("@/pages/station/list"), |
|
meta: { title: "实验台" } |
|
}, |
|
{ |
|
name: `${pre}preview`, |
|
path: `preview`, |
|
component: () => import("@/pages/station/preview"), |
|
meta: { title: "课程预览" } |
|
} |
|
] |
|
}; |