17 lines
409 B
Vue
17 lines
409 B
Vue
<template>
|
|
<div id="app" class="flex flex-col min-h-screen">
|
|
<MainNavigationBar class="flex-none" />
|
|
<RouterView class="flex-auto" />
|
|
<Footer class="flex-none" />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import * as log from 'loglevel';
|
|
|
|
import MainNavigationBar from '@/components/MainNavigationBar.vue';
|
|
import Footer from '@/components/Footer.vue';
|
|
|
|
log.debug('App created');
|
|
</script>
|