fix. [PWT-158] 공식 영상 > 추천 영상 자동 롤링 기능 미동작

This commit is contained in:
clkim
2025-12-02 14:28:58 +09:00
parent 3348c21696
commit cc5f7e3ef4
9 changed files with 49 additions and 5 deletions

View File

@@ -8,6 +8,7 @@ interface Props {
slideItemLength?: number
gap?: number
autoplay?: boolean
interval?: number
perPage?: number
drag?: boolean
arrows?: boolean
@@ -20,6 +21,7 @@ interface Props {
const props = withDefaults(defineProps<Props>(), {
gap: 0,
autoplay: false,
interval: 5000,
perPage: 1,
drag: true,
arrows: true,
@@ -49,6 +51,7 @@ const options = computed((): ResponsiveOptions => {
easing: 'ease-in-out',
updateOnMove: true,
autoplay: props.autoplay,
interval: props.interval,
drag: props.drag,
arrows: props.arrows,
pagination: props.pagination,