Skip to content

Commit

Permalink
fix: fix build failed: ERR_REQUIRE_ESM
Browse files Browse the repository at this point in the history
  • Loading branch information
kagol committed Jan 4, 2023
1 parent 0c2223a commit 2ff063e
Show file tree
Hide file tree
Showing 4 changed files with 273 additions and 152 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { EditableSelectContext, Option as O, SELECT_KEY } from '../../editable-s
import Option from '../option/option';
import Loading from '../../../../loading/src/loading-directive';
import { useNamespace } from '../../../../shared/hooks/use-namespace';
import { debounce } from 'lodash-es';
import { debounce } from 'lodash';

export default defineComponent({
name: 'DEditableSelectDropdown',
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { computed, Ref, SetupContext } from 'vue';
import { debounce, isFunction } from 'lodash-es';
import { debounce, isFunction } from 'lodash';
import { EditableSelectProps } from '../editable-select-types';
import { States } from './use-select';

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { computed, ComputedRef, getCurrentInstance, nextTick, onMounted, reactive, ref, Ref, SetupContext, watch } from 'vue';
import { EditableSelectProps, Option, Options } from '../editable-select-types';
import { createI18nTranslate } from '../../../locale/create';
import { isNil } from 'lodash-es';
import { isNil } from 'lodash';

export interface UseSelectStatesReturnType {
hoveringIndex: number;
Expand Down
Loading

0 comments on commit 2ff063e

Please sign in to comment.