slots in vue code example
Example 1: nested slots in vue
<grand-child>
<template v-for="(_, slot) in $slots">
<template :slot="slot">
<slot :name="slot"></slot>
</template>
</template>
</grand-child>
Example 2: vuejs how use this.$slots.default
console.log(this.$slots.default());