mirror of
https://github.com/ArthurDanjou/artsite.git
synced 2026-01-14 15:54:13 +01:00
23 lines
412 B
Vue
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>
|