diff --git a/apps/vdn-static/src/components/atoms/RichTemplate.vue b/apps/vdn-static/src/components/atoms/RichTemplate.vue index 6fd5315..f68b32b 100644 --- a/apps/vdn-static/src/components/atoms/RichTemplate.vue +++ b/apps/vdn-static/src/components/atoms/RichTemplate.vue @@ -7,8 +7,12 @@ import { import RichTemplateParts from "./RichTemplateParts.vue"; import OptionalParent from "./OptionalParent.vue"; -defineProps<{ template: CompiledRichTemplate; tag?: string }>(); +const props = defineProps<{ + template: CompiledRichTemplate; + tag?: string; +}>(); const slots = defineSlots<{ [K in SlotName]: () => VNode[] }>(); +console.log(Object.entries(props.template));