Input 控件示意如下

<el-input v-model="form.example" placeholder="自动计算年龄" :readonly="true"/>

新手做法

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

有效方法

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

前往低代码交流专区

更多推荐