fix: possible circular reference issue during build (#5894)

* 修复构建期间出现的循环引用警告
pull/73/head
Netfan 2025-04-08 14:50:05 +08:00 committed by YunaiV
parent a1e761b9f8
commit 621650435b
1 changed files with 1 additions and 1 deletions

View File

@ -6,11 +6,11 @@ import type { ValueType, VbenButtonGroupProps } from './button';
import { computed, ref, watch } from 'vue';
import { Circle, CircleCheckBig, LoaderCircle } from '@vben-core/icons';
import { VbenRenderContent } from '@vben-core/shadcn-ui';
import { cn, isFunction } from '@vben-core/shared/utils';
import { objectOmit } from '@vueuse/core';
import { VbenRenderContent } from '../render-content';
import VbenButtonGroup from './button-group.vue';
import Button from './button.vue';