This commit is contained in:
Lan
2024-09-25 19:09:53 +08:00
commit 075ffb7002
24 changed files with 4182 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
import { createRouter, createWebHistory } from 'vue-router'
const router = createRouter({
history: createWebHistory(import.meta.env.BASE_URL),
routes: [
{
path: '/',
name: 'home',
component: () => import('@/views/RetrievewFileView.vue')
},
{
path: '/send',
name: 'send',
component: () => import('@/views/SendFileView.vue')
}
]
})
export default router