filer/frontend/src/layout/FilerLayout.vue

13 lines
271 B
Vue

<template>
<div class="flex flex-col min-h-screen bg-base-200">
<Navbar></Navbar>
<div class="flex justify-center">
<RouterView></RouterView>
</div>
</div>
</template>
<script setup lang="ts">
import Navbar from '@/components/Navbar.vue'
</script>