Upon further research I have found this:

MyButton.vue

<slot :name="text" slot-scope="slot" :myVar="myVar">
  My Button
</slot>
OtherComponent.vue <my-button> <div :slot="text" slot-scope="slot"> {{ slot.myVar }} </div> </my-button>

https://stackoverflow.com/questions/47094482/vue-share-variable-with-slot

posted on 2018-05-08 16:44  jzfan  阅读(126)  评论(0编辑  收藏  举报