| | |
| | | <script setup lang="ts"> |
| | | import type { Component } from 'vue'; |
| | | |
| | | import type { AnyFunction } from '..\..\..\..\..\types\src'; |
| | | import type { AnyFunction } from '../../../../../types/src'; |
| | | |
| | | import { computed, useTemplateRef, watch } from 'vue'; |
| | | |
| | | import { useHoverToggle } from '..\..\..\..\hooks\src'; |
| | | import { LockKeyhole, LogOut, Settings } from '..\..\..\..\..\icons\src'; |
| | | import { $t } from '..\..\..\..\..\locales\src'; |
| | | import { preferences, usePreferences } from '..\..\..\..\..\preferences\src'; |
| | | import { useAccessStore } from '..\..\..\..\..\stores\src'; |
| | | import { isWindowsOs } from '..\..\..\..\..\utils\src'; |
| | | import { useHoverToggle } from '../../../../hooks/src'; |
| | | import { LockKeyhole, LogOut, Settings } from '../../../../../icons/src'; |
| | | import { $t } from '../../../../../locales/src'; |
| | | import { preferences, usePreferences } from '../../../../../preferences/src'; |
| | | import { useAccessStore } from '../../../../../stores/src'; |
| | | import { isWindowsOs } from '../../../../../utils/src'; |
| | | |
| | | import { useVbenModal } from '..\..\..\..\..\@core\ui-kit\popup-ui\src'; |
| | | import { useVbenModal } from '../../../../../@core/ui-kit/popup-ui/src'; |
| | | import { |
| | | Badge, |
| | | DropdownMenu, |
| | |
| | | DropdownMenuTrigger, |
| | | VbenAvatar, |
| | | VbenIcon, |
| | | } from '..\..\..\..\..\@core\ui-kit\shadcn-ui\src'; |
| | | } from '../../../../../@core/ui-kit/shadcn-ui/src'; |
| | | |
| | | import { useMagicKeys, whenever } from '@vueuse/core'; |
| | | |