b2nil / taro-ui-vue3

采用 Vue 3.0 重写的 Taro UI 组件库
https://b2nil.github.io/taro-ui-vue3/
MIT License
160 stars 51 forks source link

input、input-number、textarea、searchbar 等表单组件提供 v-model 支持 #62

Closed b2nil closed 3 years ago

b2nil commented 3 years ago

问题描述

以上组件为受控组件,需要通过 onChange 来更新 value 值变化。 可考虑提供 v-model 支持。

涉及的平台

h5小程序

#### 代码
```html
// without v-model
<AtInput :value="modelValue" @change="updateValue"/>

// with v-model support
<AtInput v-model="modelValue" />
b2nil commented 3 years ago

implemented in alpha.17