ff-webpage/components/CollectionDetail.vue

18 lines
562 B
Vue

<template>
<div class="min-h-[calc(100vh-9rem)] container mx-auto py-12">
{{ data }}
</div>
</template>
<script setup lang="ts">
import type { PropType } from "vue";
import type SharedHero from "../types/component/sharedHero";
import type { ComponentTypes } from "../types/component/baseComponent";
import type Article from "../types/collection/article";
import type Operation from "../types/collection/operation";
import type Event from "../types/collection/event";
defineProps({
data: Object as PropType<Article | Operation | Event>,
});
</script>