Trim non core admin route entries

This commit is contained in:
2026-06-09 13:52:44 +08:00
parent 0f47b3a231
commit 5519786fa7
5 changed files with 6 additions and 28 deletions
@@ -1,14 +1,17 @@
<script lang="ts" setup>
import { computed } from 'vue';
import { computed, defineAsyncComponent } from 'vue';
import { ZqDialog } from '#/components/zq-dialog';
import { $t } from '#/locales';
import OrgChartPanel from '#/views/_core/org-chart/modules/OrgChartPanel.vue';
defineOptions({
name: 'UserProfileDialog',
});
const OrgChartPanel = defineAsyncComponent(
() => import('#/views/_core/org-chart/modules/OrgChartPanel.vue'),
);
const props = defineProps<{
modelValue: boolean;
userId: string;