kalkutago/client/src/App.vue
2023-06-25 15:20:16 -04:00

12 lines
208 B
Vue

<script setup lang="ts">
import { RouterView } from 'vue-router'
import NavBar from './components/NavBar.vue'
</script>
<template>
<div >
<NavBar />
<RouterView />
</div>
</template>