ff-webpage/components/base/ListImageItem.vue

13 lines
263 B
Vue
Raw Normal View History

2024-11-03 14:34:48 +00:00
<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>