b2nil/taro-ui-vue3

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

b2nil opened this issue · 1 comments

b2nil commented

问题描述

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

涉及的平台

h5小程序

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

// with v-model support
<AtInput v-model="modelValue" />

b2nil commented

implemented in alpha.17