You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
519 B
10 lines
519 B
3 years ago
|
## import 声明
|
||
|
|
||
|
import 声明有两种用法,一个是直接 import 一个模块,另一个是带 from 的 import,它能引入模块里的一些信息。
|
||
|
|
||
|
```javascript
|
||
|
import "mod"; //引入一个模块
|
||
|
import v from "mod"; //把模块默认的导出值放入变量v
|
||
|
```
|
||
|
|
||
|
直接 import 一个模块,只是保证了这个模块代码被执行,引用它的模块是无法获得它的任何信息的,而带 from 的 import 意思是引入模块中的一部分信息,可以把它们变成本地的变量。
|