获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
实测用具名slot可以,childB中name和slot都写上完成传递,如下 page <childb><text slot="xxx">{{text}}</text></childb> childB <view><slot name="xxx" slot="xxx"/><view> childA <view><slot name="xxx">默认文案</slot><view> 记得js中需要设置下 options: { multipleSlots: true // 在组件定义时的选项中启用多slot支持 }
微信小程序组件的slot可以传递多层嵌套组件中吗?基础版本号2.10.1 page <childb><text>text</text></childb> childb <childa><slot/></childa> childa <view><slot/><view> 问题,最终text的渲染位置是在childa节点下还是childb节点下;目前微信开发者工具显示是在childb下面,所以无法传递到childa中,请问能像vue实现类似功能吗?
07-22