热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

ui表单vue重置element_(vue.js)elementui表单重置this.$refs[formName].resetFields()不执行...

我在一个弹框里有一个form表单,用于增加页面内容。点击取消按钮本身form里的内容都清空才对。使用了this.$refs[addServiceForm].reset

我在一个弹框里有一个form表单,用于增加页面内容。点击取消按钮本身form里的内容都清空才对。使用了this.$refs['addServiceForm'].resetFields()不起作用。console出来

console.log(this.$refs['addServiceForm'].resetFields());居然是undefined。

title="新建服务"

:visible.sync="addServiceDialogVisible"

width="400px">

名称
简称
类型

v-for="item in serviceTypeOptions1"

:key="item.value"

:label="item.label"

:value="item.value">

备注

确 定

取 消

cancleAddService(){

this.resetForm('addServiceForm');

// this.serviceName='';

// this.serviceShorterName='';

// this.serviceRemarks='';

// this.serviceType='';

this.addServiceDialogVisible=false;

},

resetForm(formName) {

this.$refs[formName].resetFields();

console.log("form名称:"+this.$refs['addServiceForm'].resetFields());

}



推荐阅读
author-avatar
用释怀来成全悲伤_490_905_560
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有