Files
pleno-vue/src/components/page/wrappers/DefaultPageWrapper.vue
T
Jepp9350 edc979d8fb Refactor dashboard and UI components; add theming system
Introduce a centralized theming configuration via `ThemeConfig.vue`. Refactor various dashboard components for consistency and modularity, including new wrappers (`DepartmentDashboardPageWrapper`, `WhiteBox`, `ButtonsBox`). Enhance user context with `UserNavigationTop` and improve menu structure with reusable menus (`AdminLeftMenu`, `MenuDefault`). Update button and UI element styles using dynamic theming.
2025-02-25 11:29:41 +01:00

14 lines
187 B
Vue

<script setup>
import Swal from "sweetalert2";
import '@sweetalert2/theme-bulma/bulma.scss';
</script>
<template>
<div>
<slot></slot>
</div>
</template>
<style scoped>
</style>