2.0.3 • Published 2 years ago
@wu-component/wu-input v2.0.3
Input 输入框
常用的输入框组件。
基础用法
::: demo
<template>
<div style="display: flex; align-items: center;justify-content: space-around;padding: 16px">
<wu-plus-input style="width: 280px" maxLength="10" disabled="false" placeholder="请输入" type="input"></wu-plus-input>
</div>
</template>:::
禁用状态
::: demo
<template>
<div style="display: flex; align-items: center;justify-content: space-around;padding: 16px">
<wu-plus-input style="width: 280px" maxLength="10" disabled="true" placeholder="请输入" clearable="true" type="input"></wu-plus-input>
</div>
</template>
<script>
</script>:::
清除按钮
::: demo
<template>
<div style="display: flex; align-items: center;justify-content: space-around;padding: 16px">
<wu-plus-input style="width: 280px" maxLength="10" placeholder="请输入" clearable="true" type="input"></wu-plus-input>
</div>
</template>:::
文本域
::: demo
<template>
<div style="display: flex; align-items: center;justify-content: space-around;padding: 16px">
<wu-plus-input style="width: 280px" rows="2" disabled="false" maxLength="20" placeholder="请输入" clearable="false" type="textarea"></wu-plus-input>
</div>
</template>:::
Attributes
| 参数 | 说明 | 类型 | 可选值 | 默认值 |
|---|---|---|---|---|
| size | 组件大小 | UISize | medium、small、mini | mini |
| disabled | 是否禁用 | Boolean | true, false | false |
| clearable | 是否清除 | Boolean | true, false | false |
| value | 输入框值 | String | -- | -- |
| type | 类型 | String | textarea、input | input |
| placeholder | placeholder | String | -- | -- |
| suffixIcon | suffixIcon | String | -- | -- |
| name | name | String | -- | -- |
| form | form | String | -- | -- |
| prefixIcon | prefixIcon | String | -- | -- |
| maxLength | 最大长度 | Number | -- | -- |
| minLength | 最小长度 | Number | -- | -- |
| rows | 行数,仅文本域有用 | Number | -- | -- |
| autoComplete | 是否补全 | Boolean | true, false | false |
| onBlur | 失去焦点 | Function | -- | -- |
| onFocus | 获取焦点 | Function | -- | -- |
| onInput | 用户输入 | Function | -- | -- |
| onChange | 值修改 | Function | -- | -- |
| onMouseEnter | 鼠标移入 | Function | -- | -- |
| onMouseLeave | 鼠标离开 | Function | -- | -- |
Event
| 事件名 | 说明 | 参数 |
|---|---|---|
| change | 值修改 | (event: CustomEvent) => void |
| blur | 失去焦点 | (event: CustomEvent) => void |
| focus | 获取焦点 | (event: CustomEvent) => void |
| input | 用户输入 | (event: CustomEvent) => void |
2.0.3
2 years ago
2.0.1
3 years ago
2.0.0
3 years ago
1.11.8
3 years ago
1.11.7
3 years ago
1.11.6
3 years ago
1.11.4
3 years ago
1.11.3
3 years ago
1.11.1
3 years ago
1.10.6
3 years ago
1.10.3
3 years ago
1.10.2
3 years ago
1.10.1
3 years ago
1.9.24
3 years ago
1.9.21
3 years ago
1.9.20
3 years ago
1.9.17
3 years ago
1.9.1
3 years ago
1.8.0
3 years ago
1.7.0
3 years ago
1.6.1
3 years ago
1.6.0
3 years ago
1.5.0
3 years ago
1.4.3
3 years ago
1.4.2
3 years ago
1.4.1
3 years ago
1.4.0
3 years ago
1.0.1
3 years ago
0.0.9
3 years ago
0.0.8
3 years ago
0.0.7
3 years ago
0.0.6
3 years ago
0.0.5
3 years ago
0.0.4
3 years ago
0.0.3
3 years ago
0.0.2
3 years ago
0.0.1
3 years ago