feat:新增景区页面

This commit is contained in:
zjc
2024-12-17 18:18:07 +08:00
parent 5e5ce522db
commit 1108aafed4
22 changed files with 1061 additions and 126 deletions

View File

@@ -6,13 +6,18 @@ const router = createRouter({
{
path: '/',
name: 'home',
component: () => import('../views/home/index.vue')
component: () => import('@/views/home/index.vue')
},
{
path: '/monitor',
name: 'monitor',
component: () => import('../views/monitor/index.vue')
}
{
path: '/monitor',
name: 'monitor',
component: () => import('@/views/monitor/index.vue')
},
{
path: '/scenic',
name: 'scenic',
component: () => import('@/views/scenic/index.vue')
}
]
})