我收到下面的错误
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
发布于 2020-08-20 00:43:56
如果在您的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
}https://stackoverflow.com/questions/63491321
复制相似问题