uniapp input dynamically modify the value

1. Final plan

setTimeout(() => {
	this.变量 = '你要修改的值';
}, 100)

2. Only the first revision changes

this.$nextTick(()=>{
	this.变量 = '你要修改的值';
});

Guess you like

Origin blog.csdn.net/qq_28641023/article/details/131639902