Initial commit

This commit is contained in:
2025-09-06 22:44:10 +02:00
commit fbd73d7345
21 changed files with 1013 additions and 0 deletions
+8
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;