30 lines
758 B
Vue
30 lines
758 B
Vue
<script setup lang="ts">
|
|
import { cn } from '@/lib/utils'
|
|
import {
|
|
ScrollAreaCorner,
|
|
ScrollAreaRoot,
|
|
type ScrollAreaRootProps,
|
|
ScrollAreaViewport,
|
|
} from 'reka-ui'
|
|
import { computed, type HTMLAttributes } from 'vue'
|
|
import ScrollBar from './ScrollBar.vue'
|
|
|
|
const props = defineProps<ScrollAreaRootProps & { class?: HTMLAttributes['class'] }>()
|
|
|
|
const delegatedProps = computed(() => {
|
|
const { class: _, ...delegated } = props
|
|
|
|
return delegated
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<ScrollAreaRoot v-bind="delegatedProps" :class="cn('relative overflow-hidden', props.class)">
|
|
<ScrollAreaViewport class="h-full w-full rounded-[inherit]">
|
|
<slot />
|
|
</ScrollAreaViewport>
|
|
<ScrollBar />
|
|
<ScrollAreaCorner />
|
|
</ScrollAreaRoot>
|
|
</template>
|