作用域插槽三种调用方法

<slot></slot>
<slot name="abc" a="1" b=2""></slot>

<child>
    <template slot="abc"  slot-scope="obj"></template> //此时这里的obj就是a,b的集合 调用时使用obj.a,obj.b
    <template v-slot:abc="obj"></template>
    <template #abc="obj"></template>
</child>

 

posted @ 2022-08-07 19:27  ajaXJson  阅读(90)  评论(0编辑  收藏  举报