Files
pleno-vue/src/components/displays/user/UserNavigationTop.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

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>