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.
13 lines
248 B
Vue
13 lines
248 B
Vue
<script setup>
|
|
import { SessionUser } from "@/components/session/token/SessionUser.vue";
|
|
console.log(SessionUser);
|
|
console.log(SessionUser.user);
|
|
</script>
|
|
|
|
<template>
|
|
<p>{{SessionUser.user.display_name}}</p>
|
|
</template>
|
|
|
|
<style scoped>
|
|
|
|
</style> |