为什么import store from ‘./store‘和 ‘./store/index‘一样

简介: 为什么import store from ‘./store‘和 ‘./store/index‘一样

import store from './store'

这种方式假定在当前文件所在目录下有一个名为store的文件(可以是JavaScript或TypeScript文件,取决于你的项目配置)。当你只导入目录路径时,默认会查找该目录下的index.jsindex.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入口文件

相关文章
|
前端开发 索引
react中什么情况下不能用index作为key
react中什么情况下不能用index作为key
173 0
|
4月前
|
JavaScript 算法 前端开发
vue中别再使用index做key啦!
vue中别再使用index做key啦!
|
5月前
echarts 报错 —— Component series.map not exists. Load it first
echarts 报错 —— Component series.map not exists. Load it first
155 0
|
7月前
Cannot load keys from store: class path resource
Cannot load keys from store: class path resource
398 0
|
JavaScript 算法 前端开发
Vue - v-for 中为什么不能用 index 作为 key
Vue - v-for 中为什么不能用 index 作为 key
217 0
|
开发者
ipa上传到app store的方法
假如你没有mac电脑,将ipa上传到苹果开发者中心,生成构建版本在以前是一个比较麻烦的活,但是现在有现成的免费工具可以将ipa上传到苹果开发者中心,并生成构建版本。
|
JavaScript
Vue报错:error Elements in iteration expect to have ‘v-bind:key‘ directives vue/require-v-for-key
Vue报错:error Elements in iteration expect to have ‘v-bind:key‘ directives vue/require-v-for-key
467 0
Pinia的Store运行时定义ID
Pinia的Store运行时定义ID
532 0
|
JavaScript
Inject reducer arbitrarily rather than top level for redux store to replace reducer
When writing a big react redux application or any SPA using redux, there is a need to split code with webpack and load reducers asynchronously. The way to load reducer asynchronously is utilizing red
1467 0