13 lines
254 B
Vue
13 lines
254 B
Vue
<script setup>
|
|
import AppTitlebar from "./components/AppTitlebar.vue";
|
|
</script>
|
|
|
|
<template>
|
|
<div class="flex h-full flex-col">
|
|
<AppTitlebar />
|
|
<main class="min-h-0 flex-1 overflow-hidden">
|
|
<RouterView />
|
|
</main>
|
|
</div>
|
|
</template>
|