问题:
自定义组件时,component.json报错【未找到】:
[ pages/cart/index.json 文件内容错误] pages/cart/index.json: ["usingComponents"]["button"]: "../../components/buttons/big" 未找到(env: macOS,mp,1.05.2201240; lib: 2.24.0)
// 尝试直接在app.json中指定时依旧报错
[ app.json 文件内容错误] app.json: ["usingComponents"]["button"]: "./components/buttons/big" 未找到(env: macOS,mp,1.05.2201240; lib: 2.24.0)
组件.json:
{
"component": true
}
页面.json:
{
"usingComponents":{
"button":"../../components/buttons/big"
}
}
其他自定义组件却没问题,这是为什么?如何解决?
{
"usingComponents":{
"button":"../../components/buttons/big/index"
}
}
自定义组件不需要跟/index,直接引到组件四个文件的目录即可使用。(可能是我的文件名就是index的缘故吧)
{
"usingComponents":{
"default":"../../components/default/index",
"bigbutton":"../../components/buttons/big/index"
}
}
求帮忙看看,为啥修改了路径还是报错
帮我看看我这个怎么回事
这里要写相对路径,而且要写在json文件中
这个是未安装npm的问题吗?
我这个是咋回事,也是显示