Replies: 2 comments
-
+1, 也遇到这个问题了 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
插件页面中:
list.config.ts:
"componentGenerics": {
"mp-view": true,
}
list.tsx:
小程序中:
app.config.ts:
{
"myPlugin": {
"provider": "wxAPPID",
"version": "1.0.0",
"genericsImplementation": {
"list": {
"mp-view": "components/comp-from-miniprogram"
}
}
}
}
页面调用插件页面:
跳转到插件页面
点击按钮跳转时小程序报错Component is not found in path "components/comp-from-miniprogram",页面路径肯定没有问题,taro版本是3.5.5,如果我要在插件页渲染小程序组件还有其它方法吗?
Beta Was this translation helpful? Give feedback.
All reactions