vue-iviewUI小技巧

1,resetFields()移除校验结果并重置字段值
this.$refs['formInline'].resetFields();
2,@keyup.enter.native="findFun"键盘回车事件
<Form ref="formInline" inline :label-width="100" @keyup.enter.native="findFun">
</Form>
原文地址:https://www.cnblogs.com/wssdx/p/12294809.html