inventory/web/src/layouts/default.vue

14 lines
190 B
Vue
Raw Normal View History

2025-02-26 00:09:11 +01:00
<template>
<AppHeader />
2025-02-26 00:09:11 +01:00
<v-main>
<router-view />
</v-main>
<AppFooter />
</template>
<script lang="ts" setup>
import AppHeader from '@/components/AppHeader.vue';
2025-02-26 00:09:11 +01:00
</script>