This is an overview of the most common usage of TextField. For more information about the available properties, methods, or events, head over to the complete API documentation for TextField.
<TextField>
是一个输入组件,用于创建可编辑的单行框。
<TextField>
扩展 TextBase
和 EditableTextBase
提供其他属性和事件。
<TextField :text="textFieldValue" hint="Enter text..." />
<TextField>
使用提供双向数据绑定 v-model
。
<TextField v-model="textFieldValue" />
名称 | 类型 | 描述 |
---|---|---|
text | String | 获取或设置字段的值。 |
hint | String | 获取或设置占位符文本。 |
editable | Boolean | 何时 true ,表示用户可以编辑该字段的值。 |
maxLength | Number | 限制输入到spcified数字的字符。 |
secure | Boolean | 隐藏输入的文本 true 。使用此属性可创建密码输入字段。默认值: false 。 |
keyboardType | KeyboardType | 显示自定义键盘以便于文本输入。 有效值: datetime , phone , number , url , 或 email 。 |
returnKeyType | ReturnKeyType | 获取或设置返回键的标签。 有效值: done , next , go , search , 或 send 。 |
autocorrect | Boolean | 启用或禁用自动更正。 |
名称 | 描述 |
---|---|
textChange | 文本更改时发出。 |
returnPress | 按下返回键时发出。 |
focus | 当场是焦点时发射。 |
blur | 当场失去焦点时发出。 |
Android | iOS |
---|---|
android.widget.EditText | UITextField |