feat. GR_DETAIL_01 템플릿 제작

This commit is contained in:
clkim
2025-10-17 17:51:19 +09:00
parent 120580495f
commit ebfdd5c8fd
13 changed files with 198 additions and 30 deletions

View File

@@ -13,20 +13,21 @@ interface Props {
}
const props = defineProps<Props>()
const slideData = computed(() => {
return getComponentContainer(props.components, 'group_sets')
})
</script>
<template>
<section class="section-container">
<BlocksSlideFade
v-if="props.components?.group_sets"
v-if="slideData"
:arrows="true"
:pagination="true"
class="h-full"
>
<SplideSlide
v-for="(item, index) in props.components.group_sets"
:key="index"
>
<SplideSlide v-for="(item, index) in slideData" :key="index">
<WidgetsBackground
v-if="hasComponentGroup(item, 'background')"
:resources-data="getComponentGroup(item, 'background')"