shadcn-vue/apps/www/registry/new-york/ui/stepper/Stepper.vue
2024-11-21 11:52:31 +08:00

32 lines
748 B
Vue

<script lang="ts" setup>
import type { StepperRootEmits, StepperRootProps } from 'reka-ui'
import { cn } from '@/lib/utils'
import { StepperRoot, useForwardPropsEmits } from 'reka-ui'
import { computed, type HTMLAttributes } from 'vue'
const props = defineProps<StepperRootProps & { class?: HTMLAttributes['class'] }>()
const emits = defineEmits<StepperRootEmits>()
const delegatedProps = computed(() => {
const { class: _, ...delegated } = props
return delegated
})
const forwarded = useForwardPropsEmits(delegatedProps, emits)
</script>
<template>
<StepperRoot
v-slot="slotProps"
:class="cn(
'flex gap-2',
props.class,
)"
v-bind="forwarded"
>
<slot v-bind="slotProps" />
</StepperRoot>
</template>