Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR TYPESCRIPT

nested slots in vue

<grand-child>
  <template v-for="(_, slot) in $slots">
    <template :slot="slot">
      <slot :name="slot"></slot>
    </template>
  </template>
</grand-child>
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #nested #slots #vue
ADD COMMENT
Topic
Name
4+3 =