11 lines
261 B
Vue
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>
|