19 lines
396 B
Vue
19 lines
396 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">
|
|
<BlocksVisualContent :resources-data="props.resourcesData" />
|
|
</component>
|
|
</template>
|