ff-webpage/components/shared/List.vue

13 lines
239 B
Vue
Raw Normal View History

<template>
<p>{{ data }}</p>
</template>
<script setup lang="ts">
import type { PropType } from "vue";
import type SharedList from "../../types/component/sharedList";
defineProps({
data: Object as PropType<SharedList>,
});
</script>