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

Update module.md

这里有歧义。输出时已经each方法改写成forEach:'export { each as forEach }',import时只需要引入forEach即可,不需要再import { each as forEach } from 'lodash'。如果你import的as表示的是export中的第二个export,那实际上第三个的export就不需要写了
This commit is contained in:
zz 2018-11-06 06:21:49 -06:00 committed by GitHub
parent 8a0f97459f
commit 13f696e43b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -464,7 +464,7 @@ import _ from 'lodash';
如果想在一条`import`语句中,同时输入默认方法和其他接口,可以写成下面这样。
```javascript
import _, { each, each as forEach } from 'lodash';
import _, { each, forEach } from 'lodash';
```
对应上面代码的`export`语句如下。