소스 검색

form: Fix `getFormData` import

I missed this in #523 :confused: `get-form-data@2.x` exports an object
with a default property, like other transpiled ES modules.
Renée Kooi 7 년 전
부모
커밋
dcb59ee605
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/plugins/Form.js

+ 1 - 1
src/plugins/Form.js

@@ -1,6 +1,6 @@
 const Plugin = require('../core/Plugin')
 const Plugin = require('../core/Plugin')
 const { findDOMElement } = require('../core/Utils')
 const { findDOMElement } = require('../core/Utils')
-const getFormData = require('get-form-data')
+const getFormData = require('get-form-data').default
 
 
 /**
 /**
  * Form
  * Form