Input
实例
不同尺寸
html
<MtInput
placeholder="测试字体大小"
size="tiny">
</MtInput>
<br/>
<MtInput
placeholder="测试字体大小"
size="small" />
<br/>
<MtInput
placeholder="测试字体大小"
size="middle" />
<br/>
<MtInput
placeholder="测试字体大小"
size="large" />
折叠
折叠
密码输入框类型
html
<MtInput type="password" />
折叠
折叠
显隐密码
显
html
<MtInput type="password" :pwdSwitch="true" v-model="val"/>
折叠
折叠
Props
参数 | 说明 | 类型 | 可选值 | 默认值 |
---|---|---|---|---|
type | 输入框类型 | string | —— | "text" |
size | 输入框尺寸 | string | large、middle、small、tiny | "middle" |
placeholder | 输入占位 | string | —— | "" |
pwdSwitch | 显隐密码 | boolean | —— | false |
Slots
名称 | 说明 |
---|---|
default | 默认插槽 |