This commit is contained in:
2023-12-19 12:22:11 +08:00
parent dfb1764252
commit e33a0c724c
31 changed files with 1788 additions and 75 deletions

18
src/router/index.js Normal file
View File

@@ -0,0 +1,18 @@
import { createRouter, createWebHashHistory } from 'vue-router'
import Index from '../views/Index.vue'
const routes = [
{
path: '/',
name: 'index',
component: Index
},
]
const router = createRouter({
history: createWebHashHistory(),
routes
})
export default router