ff-webpage/components/base/ListImageItem.vue

12 lines
263 B
Vue

<template>
<p>ListImageItem: {{ data }}</p>
</template>
<script setup lang="ts">
import type { PropType } from "vue";
import type BaseCollection from "~/types/collection/baseCollection";
defineProps({
data: Object as PropType<BaseCollection>,
});
</script>