maplemei92
maplemei92
  • 发布:2022-09-30 11:34
  • 更新:2022-09-30 11:34
  • 阅读:198

template v-slot:xxx this.slots 无结果

分类:uni-app

父组件

<children>  
    <template v-slot:option="{ option }">  
         {{ option }}  
    </template>  
</children>

子组件 children.vue

<view>  
        <slot name="option" :option="{}"></slot>  
</view>  

mounted() {  
    // 这里 没有对应的 option  
    console.log(this.$slots);  
}

如果不写

<children>  
    <template v-slot:option="">  
         xxx  
    </template>  
</children>

则有对应的数据

2022-09-30 11:34 负责人:无 分享
已邀请:

该问题目前已经被锁定, 无法添加新回复