0๐
โ
vm.$scopedSlots
contains a map of slot names to render functions, which can receive slot props.
To pass myProp
as a slot prop to the default slot:
<div>{this.$scopedSlots.default?.({ myProp: "hello world" })}</div>
Source:stackexchange.com