我正在尝试创建一个导出多个 ES6 类的module。假设我有以下目录结构:
my/
└── module/
├── Foo.js
├── Bar.js
└── index.js
Foo.js
并且Bar.js
每个都导出一个默认的 ES6 类:
// Foo.js
export default class Foo {
// class definition
}
// Bar.js
export default class Bar {
// class definition
}
我目前的index.js
设置如下:
import Foo from './Foo';
import Bar from './Bar';
export default {
Foo,
Bar,
}
但是,我无法导入。我希望能够做到这一点,但找不到类:
import {Foo, Bar} from 'my/module';
在 ES6 module中导出多个类的正确方法是什么?