PHP Classes

File: resources/js/components/ui/scroll-area/ScrollArea.vue

Recommend this page to a friend!
  Packages of Niko Peikrishvili   Ticker   resources/js/components/ui/scroll-area/ScrollArea.vue   Download  
File: resources/js/components/ui/scroll-area/ScrollArea.vue
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Ticker
Application to track and manage to do tasks
Author: By
Last change:
Date: 4 months ago
Size: 761 bytes
 

Contents

Class file image Download
<script setup lang="ts"> import type { ScrollAreaRootProps } from "reka-ui" import type { HTMLAttributes } from "vue" import { reactiveOmit } from "@vueuse/core" import { ScrollAreaCorner, ScrollAreaRoot, ScrollAreaViewport, } from "reka-ui" import { cn } from "@/lib/utils" import ScrollBar from "./ScrollBar.vue" const props = defineProps<ScrollAreaRootProps & { class?: HTMLAttributes["class"] }>() const delegatedProps = reactiveOmit(props, "class") </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>