Narrow startup common ui imports

This commit is contained in:
2026-06-09 14:12:33 +08:00
parent 5519786fa7
commit ed63f43839
5 changed files with 14 additions and 11 deletions
@@ -5,14 +5,16 @@
import type { Component } from 'vue';
import type { BaseFormComponentType } from '@vben/common-ui';
import type { BaseFormComponentType } from '@vben-core/form-ui';
import type { Recordable } from '@vben/types';
import { defineAsyncComponent, defineComponent, h, ref } from 'vue';
import { ApiComponent, globalShareState } from '@vben/common-ui';
import { globalShareState } from '@vben-core/shared/global-state';
import { $t } from '@vben/locales';
import { ApiComponent } from '@vben/common-ui/es/api-component';
const ElButton = defineAsyncComponent(() =>
import('element-plus/es/components/button/index').then((res) => res.ElButton),
);