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
| /*
| * @Author: daidai
| * @Date: 2022-01-12 14:22:29
| * @LastEditors: Please set LastEditors
| * @LastEditTime: 2022-04-28 14:53:02
| * @FilePath: \web-pc\src\pages\big-screen\router\index.js
| */
| import Vue from "vue";
| import VueRouter from "vue-router";
|
| Vue.use(VueRouter);
|
| const routes = [ {
| path: '/',
| redirect: '/index',
| },
| {
| path: '/home',
| name: 'home',
| component: () => import(/* webpackChunkName: "LSD.bighome" */ '../views/home.vue'),
| children:[
| {
| path: '/index',
| name: 'index',
| component: () => import(/* webpackChunkName: "LSD.bighome" */ '../views/indexs/index.vue'),
| }
| ]
| },
| ];
| const router = new VueRouter({
| mode: "hash",
| // base: process.env.BASE_URL,
| routes
| });
|
| export default router;
|
|