Added a create Game vue template without logic Co-authored-by: LQ63 <lkhermann@web.de> Reviewed-on: #5
11 lines
142 B
Vue
11 lines
142 B
Vue
<script setup lang="ts">
|
|
import { RouterView } from 'vue-router'
|
|
</script>
|
|
|
|
<template>
|
|
<router-view />
|
|
</template>
|
|
|
|
<style scoped>
|
|
</style>
|