rax-medical/src/router/index.ts

15 lines
318 B
TypeScript
Raw Normal View History

2023-11-10 17:45:10 +08:00
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