Skip to content

Instantly share code, notes, and snippets.

@dabernathy89
Created September 20, 2018 20:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dabernathy89/961cead50c7ce45960df81b278488764 to your computer and use it in GitHub Desktop.
Save dabernathy89/961cead50c7ce45960df81b278488764 to your computer and use it in GitHub Desktop.
<template
v-for="(slot, slot_name) in $slots"
:slot="slot_name">
<slot :name="slot_name"></slot>
</template>
<template
v-for="(slot, slot_name) in $scopedSlots"
:slot="slot_name"
slot-scope="props">
<slot :name="slot_name" v-bind="props"></slot>
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment