22 lines
395 B
Vue
22 lines
395 B
Vue
<script setup lang="ts">
|
|
import { RouterView } from 'vue-router'
|
|
import AppHeader from '@/components/AppHeader.vue'
|
|
import BottomNav from '@/components/BottomNav.vue'
|
|
</script>
|
|
|
|
<template>
|
|
<div class="app-shell">
|
|
<AppHeader />
|
|
<RouterView />
|
|
<BottomNav />
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.app-shell {
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
</style>
|