ff-webpage/components/base/ListItem.vue

16 lines
274 B
Vue
Raw Normal View History

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