в index.js у меня есть.
import PageLoader from './pageLoader';
$(function() {
const pageLoader = new PageLoader();
});
и pageloader.js
class PageLoader{
constructor(){
{
this.customer = null;
this.data = [];
this.init();
}
}
init() { }
}
module.exports = PageLoader;
все работает отлично.но если я импортирую класс из загрузчика страниц.
import Customer from './customer';
class PageLoader{
constructor(){
{
this.customer = null;
this.data = [];
this.init();
}
}
init() { }
}
module.exports = PageLoader;
и customer.js
class Customer{
constructor(){
this.data = [];
this.init();
}
init() {
}
}
module.exports = Customer;
, я получу
ПРЕДУПРЕЖДЕНИЕ в ./src/index.js 10: 23-33 "экспорт" по умолчанию "(импортированный как" PageLoader ") не найден в" ./pageLoader'