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
+1 -1
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`语句可以结合在一起,写成一行。