我收到以下错误
import { Home, Services, Contact} from "./containers";
每次我尝试这样导入
Module not found: Can't resolve './containers' in 'C:\Users\Admin\source\Project\src
但是,如果我执行以下操作,它将毫无问题。
import Home from "./containers/Home/index.js";
import Servicesfrom "./containers/Servicesfrom/index.js";
import Contactfrom "./containers/Contact/index.js";
里面的容器有 Home / index.js,Servicesfrom / index.js和Contact / index.js
答案 0 :(得分:1)
在您的containers
文件夹中如果有一个“ index.js”文件可以导出其他组件,则效果会更好
index.js
import Home from "./containers/Home/index.js";
import Servicesfrom "./containers/Servicesfrom/index.js";
import Contactfrom "./containers/Contact/index.js";
export {
Home,Servicesfrom, Contactfrom
}