Files
artsite/app/components/uses/Item.vue
2024-06-21 16:01:15 +02:00

23 lines
412 B
Vue

<script lang="ts" setup>
import type { PropType } from 'vue'
import type { UsesItem } from '#components'
defineProps({
item: {
type: Object as PropType<typeof UsesItem>,
required: true
}
})
</script>
<template>
<li>
<p class="text-base font-semibold text-black dark:text-white">
{{ item.name }}
</p>
<p class="text-sm">
{{ item.description }}
</p>
</li>
</template>