initial commit

This commit is contained in:
2025-08-07 00:23:12 -04:00
commit 11152f08b3
12 changed files with 3065 additions and 0 deletions

8
ui/src/router/index.js Normal file
View File

@@ -0,0 +1,8 @@
import { createRouter, createWebHistory } from 'vue-router'
const router = createRouter({
history: createWebHistory(import.meta.env.BASE_URL),
routes: [],
})
export default router