Browse Source
fix: possible circular reference issue during build (#5894)
* 修复构建期间出现的循环引用警告
pull/5898/head
Netfan
10 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
packages/@core/ui-kit/shadcn-ui/src/components/button/check-button-group.vue
|
|
|
@ -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'; |
|
|
|
|
|
|
|
|