企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
[TOC] ### 1. 在组件文件中 创建卡槽 ~~~ <view class="container tag-class"> <text>{{comment}}</text> <slot name="after"></slot> </view> ~~~ ### 2. 在组件的js中声明 ~~~ options: { multipleSlots: true // 在组件定义时的选项中启用多slot支持 }, ~~~ ### 3. 父组件的json中注册 ~~~ { "usingComponents": { "v-tag":"/components/tag/index" } } ~~~ ### 4. 使用 将wxml传给子组件 通过相同的 slot="after" ~~~ <v-tag comment="{{item.comment}}" > <text slot="after" class="num">+{{item.num}}</text> </v-tag> ~~~