gradido/admin/src/App.vue
2021-11-05 13:50:10 +01:00

17 lines
269 B
Vue

<template>
<div id="app">
<nav-bar class="wrapper-nav" />
<router-view class="wrapper p-3"></router-view>
</div>
</template>
<script>
import NavBar from '@/components/NavBar.vue'
export default {
name: 'App',
components: {
NavBar,
},
}
</script>