其他分享
首页 > 其他分享> > 选项框禁用,清空选项框内容

选项框禁用,清空选项框内容

作者:互联网

选项框禁用

disabled属性,为true时禁用

 

清空选项框内容

 

 

this.form.cityCode = ''  或者 null

delete this.form.cityCode

 

清空整个表单的内容

 

 表单需要有ref属性,然后每个el-form-item需要有prop属性这个方法才生效

this.$refs[form].resetFields()

 

标签:选项,cityCode,form,禁用,表单,清空
来源: https://www.cnblogs.com/comeoncode/p/16287040.html