fix(Field): fix filter typo

This commit is contained in:
陈嘉涵 2020-02-14 10:53:16 +08:00
parent d80bbf64dd
commit 2e927ec2e4

View File

@ -79,7 +79,7 @@ export default createComponent({
beforeDestroy() { beforeDestroy() {
if (this.vanForm) { if (this.vanForm) {
this.vanForm.fields = this.vanForm.fields.fiilter(item => item !== this); this.vanForm.fields = this.vanForm.fields.filter(item => item !== this);
} }
}, },