uniapp 微信小程序v-model双向绑定冲突
2025.04.02 | 22阅读 | 0条评论 | 小程序
<input type="text" class="input-text" placeholder="请填写项目名" :value="info.title" @input="handleInput" data-model="title">
handleInput(e) {
var that = this;
var name = e.currentTarget.dataset.model;
that.$set(that, name, e.detail.value);
},
发表评论