1
0
mirror of https://github.com/ruanyf/es6tutorial.git synced 2025-05-28 21:32:20 +00:00

Merge branch 'gh-pages' of github.com:ruanyf/es6tutorial into gh-pages

This commit is contained in:
ruanyf 2016-12-20 17:40:21 +08:00
commit 67f9495d64

View File

@ -451,7 +451,7 @@ export { foo, bar } from 'my_module';
// 等同于
import { foo, bar } from 'my_module';
export { foo, boo};
export { foo, bar };
```
上面代码中,`export``import`语句可以结合在一起,写成一行。