17 lines
314 B
Vue
17 lines
314 B
Vue
|
<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>
|