Files
web-temp/layers/components/widgets/SubTitle.vue
2026-01-13 13:56:31 +09:00

19 lines
413 B
Vue

<script setup lang="ts">
import type { PageDataResourceGroup } from '#layers/types/api/pageData'
interface Props {
resourcesData: PageDataResourceGroup
tag?: 'h3' | 'h4' | 'p'
}
const props = withDefaults(defineProps<Props>(), {
tag: 'h3',
})
</script>
<template>
<component :is="props.tag" v-motion-stagger>
<BlocksVisualContent :resources-data="props.resourcesData" />
</component>
</template>