<el-form-item label="考试时长:" prop="testTimeLong"> <el-input-number style="width:110px" :min="0" v-model="ruleForm.testTimeLong" controls-position="right"></el-input-number> </el-form-item>
此时你会发现他的默认值为1;
但是在项目的实际中
我们并不希望它的的值是1;
那么应该如何处理这个问题呢?
经过查询资料发现将它的值 赋值为undefined 就可以了!
this.ruleForm.testTimeLong=undefined;
这样它的值就是空了