feat. FX_VIDEO_01 템플릿 제작

This commit is contained in:
clkim
2025-11-04 13:30:57 +09:00
parent 444d090b70
commit 8c58d1dad5
16 changed files with 270 additions and 85 deletions

View File

@@ -6,6 +6,7 @@ import type { Splide as SplideType, ResponsiveOptions } from '@splidejs/splide'
import type { PageDataResourceGroups } from '#layers/types/api/pageData'
interface Props {
drag?: boolean
autoplay?: boolean
arrows?: boolean
pagination?: boolean
@@ -13,6 +14,7 @@ interface Props {
}
const props = withDefaults(defineProps<Props>(), {
drag: true,
autoplay: false,
arrows: true,
pagination: true,
@@ -32,6 +34,7 @@ const options = computed((): ResponsiveOptions => {
perMove: 1,
speed: 500,
updateOnMove: true,
drag: props.drag,
autoplay: props.autoplay,
pauseOnHover: false,
pauseOnFocus: false,