import store from './store'
:
这种方式假定在当前文件所在目录下有一个名为store
的文件(可以是JavaScript或TypeScript文件,取决于你的项目配置)。当你只导入目录路径时,默认会查找该目录下的index.js
或index.ts
文件作为入口
比如这样的结构
- src - store - index.js - ... - ...
那么import store from './store'
将会导入store
目录下的index.js
文件导出的内容。
import store from './store/index'
:
这种方式直接指定了要导入的文件路径为./store/index
,会导入store
目录下的index.js
文件的内容。
这两种方式会导入相同的内容,因为在一个目录中,通常只会有一个index.js
文件作为入口,所以即使你不写index它也会默认去找到index入口文件