Files
KnockOutWhist-Frontend/src/App.vue
lq64 3efacde49d feat(ui): Vue Create Game component (#5)
Added a create Game vue template without logic

Co-authored-by: LQ63 <lkhermann@web.de>
Reviewed-on: #5
2025-12-10 00:27:08 +01:00

11 lines
142 B
Vue

<script setup lang="ts">
import { RouterView } from 'vue-router'
</script>
<template>
<router-view />
</template>
<style scoped>
</style>