UNPKG

sard-uniapp

Version:

sard-uniapp 是一套基于 Uniapp + Vue3 框架开发的兼容多端的 UI 组件库

21 lines (20 loc) 715 B
export interface UsePopoutInputProps { visible?: boolean; modelValue?: any; valueOnClear?: () => any; } export interface UsePopoutInputEmits { (e: 'update:visible', visible: boolean): void; (e: 'update:model-value', ...args: any[]): void; (e: 'change', ...args: any[]): void; } export declare function usePopoutInput(props: UsePopoutInputProps, emit: UsePopoutInputEmits, options?: { onClear?: (value: any) => void; }): { innerVisible: import("vue").Ref<boolean | undefined, boolean | undefined>; innerValue: import("vue").Ref<any, any>; inputValue: import("vue").Ref<string, string>; show: () => void; onChange: (...args: any[]) => void; onClear: () => void; };