uniapp,小程序不显示默认插槽内容
[图片] 默认插槽内容,在h5和app正常显示,在小程序不显示,如上图。 代码如下: // 子组件 <template> <view> <h3>子组件内容</h3> <slot name="body"> <view>默认插槽内容</view> </slot> </view> </template> <script setup></script> <style lang="scss" scoped></style> // 父组件 <template> <view> <h1>父组件内容</h1> <unitChild> <template #body></template> </unitChild> </view> </template> <script setup> import unitChild from './components/unit-child'; </script> <style lang="scss" scoped></style>