mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
17 lines
269 B
Vue
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>
|