15 lines
448 B
Vue
15 lines
448 B
Vue
<script lang="ts" setup>
|
|
import { RouterView } from 'vue-router';
|
|
import HeaderBar from 'src/modules/shared/components/navigation/header-bar.vue';
|
|
import FooterBar from 'src/modules/shared/components/navigation/footer-bar.vue';
|
|
</script>
|
|
|
|
<template>
|
|
<q-layout view="hHh lpR fFf">
|
|
<HeaderBar />
|
|
<q-page-container>
|
|
<router-view class="q-pa-sm" />
|
|
</q-page-container>
|
|
<FooterBar />
|
|
</q-layout>
|
|
</template> |