1
0
mirror of https://github.com/ruanyf/es6tutorial.git synced 2025-05-24 10:22:23 +00:00

Update module.md

拼写错误
This commit is contained in:
hyjiacan 2016-12-20 09:03:01 +08:00 committed by GitHub
parent 329edc0711
commit a6ece9cfa3

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