xdesign-vue-next
Version:
XDesign Component for vue-next
12 lines (11 loc) • 479 B
TypeScript
import { SetupContext } from 'vue';
import { SelectInputCommonProperties } from './interface';
import { TdSelectInputProps } from './type';
export default function useSingle(props: TdSelectInputProps, context: SetupContext): {
inputRef: import("vue").Ref<any>;
commonInputProps: import("vue").ComputedRef<SelectInputCommonProperties>;
onInnerClear: (context: {
e: MouseEvent;
}) => void;
renderSelectSingle: (popupVisible: boolean) => JSX.Element;
};