kalkutago/client/src/App.vue

12 lines
208 B
Vue
Raw Normal View History

<script setup lang="ts">
2023-06-25 14:29:32 +00:00
import { RouterView } from 'vue-router'
2023-06-25 18:06:25 +00:00
import NavBar from './components/NavBar.vue'
</script>
<template>
2023-06-25 18:06:25 +00:00
<div >
<NavBar />
<RouterView />
</div>
</template>