Files
gameno-front/src/App.vue
T
kavehhn a9135bfa09 Initial commit: public frontend for GameNo.
Vue 3 + Vite student-facing app with routing, Pinia state, and API integration.
2026-08-09 04:18:09 +02:00

8 lines
106 B
Vue

<template>
<RouterView />
</template>
<script setup>
import { RouterView } from 'vue-router'
</script>