feat. FX_PREREGIST_01 템플릿 제작

This commit is contained in:
clkim
2025-11-04 21:14:45 +09:00
parent e76ac480b7
commit 6518695096
37 changed files with 678 additions and 59 deletions

View File

@@ -13,6 +13,7 @@ interface Props {
arrows?: boolean
pagination?: boolean
paginationData?: PageDataResourceGroups
destroy?: boolean
breakpoints?: ResponsiveOptions['breakpoints']
}
@@ -23,6 +24,7 @@ const props = withDefaults(defineProps<Props>(), {
drag: true,
arrows: true,
pagination: true,
destroy: false,
})
const emit = defineEmits(['mounted', 'move', 'arrowClick'])
@@ -50,6 +52,7 @@ const options = computed((): ResponsiveOptions => {
trimSpace: false,
arrows: props.arrows,
pagination: props.pagination,
destroy: props.destroy,
classes: {
arrows: 'splide-arrows',
arrow: 'splide-arrow',