OpenDTU-old/webapp/src/App.vue
2022-12-20 19:26:28 +01:00

27 lines
429 B
Vue

<template>
<NavBar />
<main class="container-fluid">
<router-view />
</main>
</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>