gtht-miniapp-sdk
Version:
gtht-miniapp-sdk 是一套基于 Uniapp + Vue3 框架开发的兼容多端的 UI 组件库
31 lines (30 loc) • 788 B
TypeScript
import { type StyleValue } from 'vue';
import { type InputProps } from '../input';
export interface PopoutInputProps {
rootStyle?: StyleValue;
rootClass?: string;
modelValue?: any;
placeholder?: string;
readonly?: boolean;
disabled?: boolean;
clearable?: boolean;
loading?: boolean;
multiline?: boolean;
arrow?: string;
arrowFamily?: string;
internalArrow?: number;
inputProps?: InputProps;
}
export declare const defaultPopoutInputProps: {
arrow: string;
arrowFamily: string;
};
export interface PopoutInputEmits {
(e: 'click', event: any): void;
(e: 'update:model-value', value: string): void;
(e: 'change', value: string): void;
(e: 'clear'): void;
}
export interface PopoutInputSlots {
'arrow'(): any;
}