feature/client-template #2

Merged
homeburger merged 27 commits from feature/client-template into main 2026-03-14 23:10:46 -05:00
2 changed files with 1 additions and 2 deletions
Showing only changes of commit 728258465d - Show all commits

View File

@@ -4,6 +4,5 @@ import index from './pages/index.vue'
</script> </script>
<template> <template>
<index />
<router-view /> <!-- Routed components appear here --> <router-view /> <!-- Routed components appear here -->
</template> </template>

View File

@@ -16,7 +16,7 @@ const routes = [
const router = createRouter({ const router = createRouter({
history: createWebHistory(import.meta.env.BASE_URL), history: createWebHistory(import.meta.env.BASE_URL),
routes: [], routes: routes,
}); });
export default router; export default router;