opnform/client/layouts/default.vue

9 lines
144 B
Vue
Raw Normal View History

2023-12-09 14:47:03 +00:00
<template>
<div class="main-layout min-h-screen flex flex-col">
2023-12-09 16:02:23 +00:00
<Navbar />
2023-12-09 14:47:03 +00:00
<slot class="flex-grow">
</slot>
</div>
</template>