| | |
| | | <script lang="ts" setup> |
| | | import type { NotificationItem } from '..\packages\effects\layouts\src'; |
| | | import type { NotificationItem } from '../packages/effects/layouts/src'; |
| | | |
| | | import type { SystemTenantApi } from '#/api/system/tenant'; |
| | | |
| | | import { computed, onMounted, ref, watch } from 'vue'; |
| | | |
| | | import { useAccess } from '..\packages\effects\access\src'; |
| | | import { AuthenticationLoginExpiredModal, useVbenModal } from '..\packages\effects\common-ui\src'; |
| | | import { VBEN_DOC_URL, VBEN_GITHUB_URL } from '..\packages\constants\src'; |
| | | import { isTenantEnable, useTabs, useWatermark } from '..\packages\effects\hooks\src'; |
| | | import { useAccess } from '../packages/effects/access/src'; |
| | | import { AuthenticationLoginExpiredModal, useVbenModal } from '../packages/effects/common-ui/src'; |
| | | import { VBEN_DOC_URL, VBEN_GITHUB_URL } from '../packages/constants/src'; |
| | | import { isTenantEnable, useTabs, useWatermark } from '../packages/effects/hooks/src'; |
| | | import { |
| | | AntdProfileOutlined, |
| | | BookOpenText, |
| | | CircleHelp, |
| | | IconifyIcon, |
| | | SvgGithubIcon, |
| | | } from '..\packages\icons\src'; |
| | | } from '../packages/icons/src'; |
| | | import { |
| | | BasicLayout, |
| | | Help, |
| | |
| | | Notification, |
| | | TenantDropdown, |
| | | UserDropdown, |
| | | } from '..\packages\effects\layouts\src'; |
| | | import { preferences, usePreferences } from '..\packages\preferences\src'; |
| | | import { useAccessStore, useUserStore } from '..\packages\stores\src'; |
| | | import { formatDateTime, openWindow } from '..\packages\utils\src'; |
| | | } from '../packages/effects/layouts/src'; |
| | | import { preferences, usePreferences } from '../packages/preferences/src'; |
| | | import { useAccessStore, useUserStore } from '../packages/stores/src'; |
| | | import { formatDateTime, openWindow } from '../packages/utils/src'; |
| | | |
| | | import { message, Tooltip } from 'ant-design-vue'; |
| | | |