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
631 B

4 years ago
import BasicLayout from "@/layouts/home";
4 years ago
4 years ago
const meta = {};
4 years ago
4 years ago
const pre = "station-";
4 years ago
export default {
4 years ago
path: "/station",
name: "station",
4 years ago
redirect: {
name: `${pre}list`
},
meta,
component: BasicLayout,
children: [
{
name: `${pre}list`,
path: `list`,
4 years ago
component: () => import("@/pages/station/list"),
meta: { title: "实验台" }
4 years ago
},
4 years ago
{
name: `${pre}preview`,
path: `preview`,
component: () => import("@/pages/station/preview"),
meta: { title: "课程预览" }
}
4 years ago
]
};