Skip to content

Instantly share code, notes, and snippets.

@dochner
Created May 29, 2023 16:37
Show Gist options
  • Save dochner/7563fbfc8024dfd3691467fb94f8a163 to your computer and use it in GitHub Desktop.
Save dochner/7563fbfc8024dfd3691467fb94f8a163 to your computer and use it in GitHub Desktop.
This is a workaround to template multiple slots of some vue component
<template v-for="(_, name) in $slots" #[name]="slotProps = {}">
<slot v-bind="slotProps" :name="name"></slot>
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment