当前位置: 代码迷 >> 综合 >> 微信小程序自定义组件Component is not found in path components weimo tabbar index using by pages index inde
  详细解决方案

微信小程序自定义组件Component is not found in path components weimo tabbar index using by pages index inde

热度:72   发布时间:2023-11-18 12:30:50.0

报错原因:components 本质上还是pages,所以需要在aap.json添加上即可
附上解决过程·:

在这里插入图片描述

大家看到这个报错是不是先想到的是componets下面的tabbar或者pages下面的index错误,我去俩个文件夹查找文件并未发现错误

componets下面的tabbar配置

//tabbar/index.jsom
{
    "compenent":true,"usingComponents": {
    }
}

pages下面的index这是引入tabbar组件的页面

 //pages/index.jsom"usingComponents": {
    "tabbar":"/components/weimo/tabbar/index"}

使用组件

//pages/index.wxml
<tabbar></tabbar>

解决问题

//app.json"pages": ["components/weimo/tabbar/index"],
  相关解决方案