OpenDTU-old/webapp/src/App.vue
2024-07-05 21:57:53 +02:00

25 lines
378 B
Vue

<template>
<NavBar />
<router-view />
</template>
<script lang="ts">
import { defineComponent } from 'vue';
import NavBar from './components/NavBar.vue';
export default defineComponent({
name: 'App',
components: {
NavBar,
},
});
</script>
<style>
/* Show it is fixed to the top */
body {
min-height: 75rem;
padding-top: 4.5rem;
}
</style>