优化构建流v0.1.9b6b

This commit is contained in:
q
2025-07-10 19:17:22 +08:00
parent df2bfb6ac7
commit 0579588814
9 changed files with 2229 additions and 1 deletions

View File

@@ -0,0 +1,17 @@
import { createRouter, createWebHistory } from 'vue-router'
import Home from '@/views/Home.vue'
import ShowFile from '@/views/ShowFile.vue'
import ShowList from '@/views/ShowList.vue'
const routes = [
{ path: '/', component: Home },
{ path: '/showFile', component: ShowFile },
{ path: '/showList', component: ShowList }
]
const router = createRouter({
history: createWebHistory('/'),
routes
})
export default router