ff-webpage/components/base/ListItem.vue

15 lines
274 B
Vue

<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>