mirror of
https://gitee.com/xiongmao1988/rax-medical.git
synced 2025-08-24 13:04:57 +08:00
15 lines
318 B
TypeScript
15 lines
318 B
TypeScript
![]() |
import { createRouter, createWebHistory } from 'vue-router'
|
||
|
|
||
|
const router = createRouter({
|
||
|
history: createWebHistory(import.meta.env.BASE_URL),
|
||
|
routes: [
|
||
|
{
|
||
|
path: '/',
|
||
|
name: '远程管理',
|
||
|
component: () => import('@/views/remote-manage/remote-manage.vue'),
|
||
|
}
|
||
|
]
|
||
|
})
|
||
|
|
||
|
export default router
|