天天看點

Vue給Input指派

Input 控件示意如下

新手做法

<script>
	this.form.example = 要賦的值;
</script>
           

有效方法

<script>
	this.$set(this.form,'example',要賦的值);
</script>