[Vue]双向绑定不生效

发布时间 2024-01-07 16:33:42作者: 夕苜19

el-input框修改了内容但页面显示延迟

解决方案:给input绑定一个@input方法,使用 this.$forceUpdate();

 

<el-input v-model.number="form.order_id" placeholder="编号" @input="orderChange"></el-input>
 
orderChange() {
   this.$forceUpdate();
},