component formatting and types
This commit is contained in:
parent
c2a7d15eeb
commit
ce745c06e5
60 changed files with 464 additions and 301 deletions
12
components/dynamicZone/Spacer.vue
Normal file
12
components/dynamicZone/Spacer.vue
Normal file
|
@ -0,0 +1,12 @@
|
|||
<template>
|
||||
<div class="bg-primary h-2 rounded-full w-48 mx-auto"></div>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import type { PropType } from "vue";
|
||||
import type DynamicZoneSpacer from "../../types/component/dynamic-zone/spacer";
|
||||
|
||||
defineProps({
|
||||
data: Object as PropType<DynamicZoneSpacer>,
|
||||
});
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue