首页 > 其他 > 详细

Vue - Share variable with slot

时间:2018-05-08 17:05:50      阅读:132      评论:0      收藏:0      [点我收藏+]
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

Vue - Share variable with slot

原文:https://www.cnblogs.com/fenle/p/9009217.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!