visua-vue/src/components/scrollpanel/VScrollpanel.vue

17 lines
314 B
Vue
Raw Normal View History

<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>