wujingjing
2025-02-12 c73ebfe1b8766ca15881c819ebd23d2c2683df57
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
import { createRouter, createWebHistory } from 'vue-router';
 
const router = createRouter({
    history: createWebHistory(import.meta.env.BASE_URL),
    routes: [
        {
            path: '/',
            name: 'home',
            component: () => import('../views/Home.vue'),
        },
        {
            path: '/industrial-software',
            name: 'industrial-software',
            component: () => import('../views/IndustrialSoftware.vue'),
        },
        {
            path: '/supply-demand',
            name: 'supply-demand',
            component: () => import('../views/SupplyDemand.vue'),
        },
        {
            path: '/application',
            name: 'application',
            component: () => import('../views/Application.vue'),
        },
        {
            path: '/public-service',
            name: 'public-service',
            component: () => import('../views/PublicService.vue'),
        },
    ],
});
 
export default router;