feature: Scroll panel component added

This commit is contained in:
Paul Valerie GOMA 2025-07-26 12:54:39 +02:00
parent e9247149fe
commit 2c6c693ceb

View File

@ -0,0 +1,16 @@
<script setup lang="ts">
import ScrollPanel from 'primevue';
const props = withDefaults(defineProps<{
step?: number
height: string
width?: string
}>(), {
step: 5,
width: '100%'
});
</script>
<template>
<ScrollPanel :step="props.step" :style="{width: props.width, height: props.height}"/>
</template>