vue-devui
Version:
DevUI components based on Vite and Vue3
8 lines (7 loc) • 311 B
TypeScript
import { Ref, SetupContext } from 'vue';
import { AutoCompleteProps, HandleSearch } from '../auto-complete-types';
export default function useLazyHandle(props: AutoCompleteProps, ctx: SetupContext, handleSearch: HandleSearch): {
showLoading: Ref<boolean>;
dropDownRef: Ref;
loadMore: () => void;
};