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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
| /*
| * @Description:
| * @Author: TT
| * @Date: 2023-02-27 11:30:56
| * @LastEditTime: 2023-02-28 20:45:23
| * @LastEditors: TT
| */
| import { createRouter, createWebHashHistory, RouteRecordRaw } from "vue-router";
| import Home from "../views/Home.vue";
| import index from "../views/Index.vue";
| import solution from "../views/Solution.vue";
| import serviceSupport from "../views/ServiceSupport.vue";
| // import sceoll from "../views/sceoll.vue";
| const routes: Array<RouteRecordRaw> = [
| {
| path: "/",
| name: "Home",
| component: Home,
| redirect: "/index",
| children: [
| {
| path: "/index",
| component: index,
| name: "index",
| meta: {
| title: "首页",
| // requireAuth: true, // 标识该路由是否需要登录
| },
| },
|
|
| ],
| },
| // {
| // path: "/sceoll",
| // component: sceoll,
| // name: "sceoll",
| // meta: {
| // title: "首页",
| // // requireAuth: true, // 标识该路由是否需要登录
| // },
| // },
| ];
|
| const router = createRouter({
| history: createWebHashHistory(),
| routes,
| });
|
| export default router;
|
|