fix: sFileList will be 'undefined' when run `form.resetFields()` (#929)

pull/953/head
luichooy 5 years ago committed by tangjinzhou
parent 2043203a11
commit ea744664a7

@ -40,7 +40,7 @@ export default {
},
watch: {
fileList(val) {
this.sFileList = val;
this.sFileList = val || [];
},
},
beforeDestroy() {

Loading…
Cancel
Save