Nychthemeron/packages/library/tests/fixtures/SlotPassthrough.vue
2026-07-15 19:28:29 -04:00

11 lines
261 B
Vue

<script setup lang="ts">
import { Primitive } from '@/lib/primitive'
defineProps<{ asChild?: boolean }>()
</script>
<template>
<Primitive as="button" :as-child="asChild" type="button" data-slot="passthrough-wrapper">
<slot />
</Primitive>
</template>