天天看点

Vue给Input赋值

Input 控件示意如下

新手做法

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

有效方法

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