28 lines
588 B
JavaScript
Raw Normal View History

2025-10-30 15:34:23 +08:00
import component from 'element-plus/es/components/tree-select/src/tree-select-option.mjs'
2025-10-15 14:07:39 +08:00
import { createRouter, createWebHistory } from 'vue-router'
const routes = [
{
path: '/',
name: 'Home',
component: () => import('../views/Home.vue')
},
{
path: '/cockpit',
name: 'Cockpit',
component: () => import('../views/cockpit/index.vue')
},
2025-10-30 15:34:23 +08:00
{
path: '/test',
name: 'test',
component: () => import('../views/ServiceStationManagePage/index.vue')
2025-10-15 14:07:39 +08:00
}
]
const router = createRouter({
history: createWebHistory(),
routes
})
export default router