我想通过使用附加到窗口对象的函数来调用构造函数方法,但它不起作用。
我的代码:
// Modal.js
export default class Modal {
constructor (...) {
....
}
....
}
/ main.js
import Modal from './modules/Modal.js';
window.createModal = ??? // I tried new Modal / Modal / Modal.constructor but none of these work
慕虎7371278
GCT1015
相关分类