Browse Source

fix: autoComplete option slot error, close #7396 #7405

pull/7514/head
tangjinzhou 7 months ago
parent
commit
61ade6b8ec
  1. 2
      components/auto-complete/index.tsx

2
components/auto-complete/index.tsx

@ -50,6 +50,8 @@ const AutoComplete = defineComponent({
props: autoCompleteProps(),
// emits: ['change', 'select', 'focus', 'blur'],
slots: Object as CustomSlotsType<{
option: any;
// deprecated, should use props `options` instead, not slot
options: any;
default: any;
notFoundContent: any;

Loading…
Cancel
Save