1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
| import baseLayout from "@/layout/base";
| const aboutUsRouter = [
| {
| path: "/aboutUs",
| name: "aboutUs",
| redirect: { name: "aboutUs-index" },
| component: baseLayout,
| meta: {
| name: "关于我们",
| authentication: false,
| },
| children: [
| {
| path: "index",
| name: "aboutUs-index",
| meta: {
| name: "关于我们",
| authentication: false,
| },
| component: () => import("@/views/aboutUs/index"),
| },
| ],
| },
| ];
|
| export default aboutUsRouter;
|
|