0
我對使用Webpack相當陌生,我試圖將其納入現有的電子商務網站。我有這樣一個簡單的類,但我需要能夠在html中的腳本標記中訪問它的方法。目前我沒有定義,將它公開給整個應用程序的適當方式是什麼?通過Webpack捆綁銷售模塊
//account.js
class Account {
constructor() {
this.transactions = [];
}
deposit(amount, date) {
this.transactions.push({
amount : amount,
date : date
});
}
};
export default Account;
//app.js
import Account from './account';
const account = new Account();