felicity-lims/webapp/views/layouts/LayoutDashboard.vue

31 lines
871 B
Vue
Raw Normal View History

2023-04-10 23:21:30 +08:00
<script setup lang="ts">
import SideBar from "../components/nav/NavigationAside.vue";
import HeaderMain from "../components/nav/NavigationMain.vue";
import Notification from "../components/Notification.vue";
</script>
2021-01-16 00:54:31 +08:00
<template>
2022-03-21 15:28:51 +08:00
<div class="h-screen bg-gray-100 font-roboto antialiased">
2021-05-28 03:54:49 +08:00
<div class="flex flex-row">
<div class="min-h-screen bg-sky-800">
2021-01-16 00:54:31 +08:00
<side-bar />
</div>
2021-05-28 03:54:49 +08:00
<div class="flex-1">
2021-01-16 00:54:31 +08:00
<header-main />
2023-04-10 23:21:30 +08:00
<main class="px-8 pt-4 overflow-y-scroll overscroll-contain">
2021-01-16 00:54:31 +08:00
<slot />
</main>
</div>
</div>
2023-04-08 18:21:23 +08:00
<div
class="absolute top-3 left-[10%] px-2 flex justify-center content-center items-center bg-yellow-500 rounded animate-bounce">
<div class="">!! Felicity Preview !!</div>
</div>
2021-01-16 00:54:31 +08:00
</div>
2021-04-09 06:37:58 +08:00
<!-- <footer-main><slot /></footer-main> -->
2021-12-13 00:20:48 +08:00
<notification />
2021-01-16 00:54:31 +08:00
</template>