🎨 build framework completed

This commit is contained in:
landaiqing
2024-08-07 22:26:41 +08:00
parent 883afb315a
commit a4b502717c
29 changed files with 2733 additions and 183 deletions

11
src/router/router.ts Normal file
View File

@@ -0,0 +1,11 @@
import {createRouter, createWebHistory, RouteRecordRaw} from 'vue-router'
import login from './modules/login'
const routes: Array<RouteRecordRaw> = [...login]
const router = createRouter({
history: createWebHistory(),
routes
})
export default router