19 lines
482 B
Vue
19 lines
482 B
Vue
<script setup lang="ts">
|
|
import TitleBar from './components/TitleBar.vue'
|
|
import NavRail from './components/NavRail.vue'
|
|
import ToastNotification from './components/ToastNotification.vue'
|
|
</script>
|
|
|
|
<template>
|
|
<div class="h-full w-full flex flex-col bg-bg-base">
|
|
<TitleBar />
|
|
<div class="flex-1 flex overflow-hidden">
|
|
<NavRail />
|
|
<main class="flex-1 overflow-auto">
|
|
<router-view />
|
|
</main>
|
|
</div>
|
|
</div>
|
|
<ToastNotification />
|
|
</template>
|