There are two styles of exports in ES6 -- named exports, and the default export. Named exports get exported with syntax like this:
export const str = 'stuff';
// or
const str = 'stuff';
export { str };
Default exports go like this:
const obj = { str: 'stuff' };
export default obj;
// or
export default {
str: 'stuff'
};
The difference shows up when you import. With the first, you need to include braces:
import { str } from 'myModule'; // 'stuff', from the first example
Without braces, it imports the default export:
import myModule from 'myModule'; // {str: 'stuff'}, from the second example
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…