使用自定义组件,一直提示:
jsEnginScriptError
Component is not found in path "components/loading/loading" (using by "pages/store/index")
Error: Component is not found in path "components/loading/loading" (using by "pages/store/index")
检查路径和名称都是正确符合规范的,但是一直提示这个问题,求解。
我也遇到这样的问题。
我引用的组件路径是:"@/components/ddmcInput/ddmcInput.vue", @代表src
将ddmcInput.vue文件改为index.vue文件,就可以正确编译,我还尝试了改为ddmcInputA.vue,也可以正确编译。
神奇!
将 ../../xxx/xxx 这种形式,更换为 /xxx/xxx 就可以了
同样遇到这个问题,场景是在用wepy中自定义顶部导航栏时(navigationStyle: custom),usingComponents引用的组件报这个错误。组件是用原生的Component写的,引用路径几种都尝试过了,组件内也写了export default class ,config里的component为true。腾讯小程序+wepy,真是顶级开发体验。
路径没有错,在手机上扫码预览是正常的,但是开发工具上编译就一直报错,应该是工具的bug。
需要在评论底下回复才会有提醒,麻烦提供一下能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
重启 项目 重启开发者工具就找得到了
检查一下路径哈
请问下,如何兼容:基础库<1.9.4
报错如下,且界面完全打不开
Component is not found in path "pages/square/plugin:/wxa75efa648b60994b/video" (using by "pages/square/square")
Error: Component is not found in path "pages/square/plugin:/wxa75efa648b60994b/video" (using by "pages/square/square")
PS:
"usingComponents": {
"txv-video": "plugin://tencentvideo/video"
}
插件从基础库1.9.6开始支持,低版本兼容可以参考:https://developers.weixin.qq.com/miniprogram/dev/framework/compatibility.html
已经判断了基础库,难道json里面可以动态配置?
而且1.9.4是没有问题的