diff --git a/spx-gui/src/components/asset/library/AssetLibraryModal.vue b/spx-gui/src/components/asset/library/AssetLibraryModal.vue index 754ac8d8e..e30d5c9ab 100644 --- a/spx-gui/src/components/asset/library/AssetLibraryModal.vue +++ b/spx-gui/src/components/asset/library/AssetLibraryModal.vue @@ -107,7 +107,7 @@ import { UIDivider } from '@/components/ui' import { listAsset, AssetType, type AssetData, IsPublic } from '@/apis/asset' -import { debounce } from '@/utils/utils' +import { debounce } from 'lodash' import { useMessageHandle, useQuery } from '@/utils/exception' import { type Category, categories as categoriesWithoutAll, categoryAll } from './category' import { type Project } from '@/models/project' diff --git a/spx-gui/src/components/editor/panels/sprite/config/SpriteBasicConfig.vue b/spx-gui/src/components/editor/panels/sprite/config/SpriteBasicConfig.vue index a9ecdaee8..c01506228 100644 --- a/spx-gui/src/components/editor/panels/sprite/config/SpriteBasicConfig.vue +++ b/spx-gui/src/components/editor/panels/sprite/config/SpriteBasicConfig.vue @@ -126,7 +126,8 @@ import { UIButtonGroupItem } from '@/components/ui' import { useMessageHandle } from '@/utils/exception' -import { debounce, round } from '@/utils/utils' +import { round } from '@/utils/utils' +import { debounce } from 'lodash' import { RotationStyle, LeftRight, diff --git a/spx-gui/src/components/editor/stage/widget/detail/MonitorDetail.vue b/spx-gui/src/components/editor/stage/widget/detail/MonitorDetail.vue index 9d6ba8017..143ac6a15 100644 --- a/spx-gui/src/components/editor/stage/widget/detail/MonitorDetail.vue +++ b/spx-gui/src/components/editor/stage/widget/detail/MonitorDetail.vue @@ -67,7 +67,8 @@ import { UIButtonGroupItem, UIIcon } from '@/components/ui' -import { debounce, round } from '@/utils/utils' +import { round } from '@/utils/utils' +import { debounce } from 'lodash' import { useMessageHandle } from '@/utils/exception' import type { Monitor } from '@/models/widget/monitor' import { useEditorCtx } from '@/components/editor/EditorContextProvider.vue' diff --git a/spx-gui/src/components/ui/form/UIFormItem.vue b/spx-gui/src/components/ui/form/UIFormItem.vue index 77b3b1c5a..bde4ef013 100644 --- a/spx-gui/src/components/ui/form/UIFormItem.vue +++ b/spx-gui/src/components/ui/form/UIFormItem.vue @@ -20,7 +20,7 @@