15 lines
274 B
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>
|