UNPKG

@58fe/p5

Version:

pc端vue组件

40 lines (28 loc) 567 B
import Vue from 'vue'; export declare class p5Input extends Vue { // 文案 value: string // 占位符 placeholder: string // 不可用 disabled: boolean // 是否可清空 empty: boolean // 是否是password showPassword: boolean // 是否增加搜索标识 search: boolean // 输入框类型 type: string // 文本域行数 rows: number // 最大字符数 maxLength: number // 文本域适应文案长度 autosize: boolean | object /** * 点击搜索icon时触发 * @param eventName */ $emit(eventName: 'onsearch'): this; }