mirror of
https://github.com/ArthurDanjou/artsite.git
synced 2026-01-14 18:59:59 +01:00
24 lines
491 B
Vue
24 lines
491 B
Vue
<script lang="ts" setup>
|
|
import type { UsesItem } from '#components'
|
|
|
|
defineProps({
|
|
item: {
|
|
type: Object as PropType<typeof UsesItem>,
|
|
required: true,
|
|
},
|
|
})
|
|
|
|
const { locale } = useI18n()
|
|
</script>
|
|
|
|
<template>
|
|
<li>
|
|
<p class="text-base font-semibold text-black dark:text-white">
|
|
{{ item.name }}
|
|
</p>
|
|
<p class="text-sm">
|
|
{{ locale === 'en' ? item.description.en : locale === 'es' ? item.description.es : item.description.fr }}
|
|
</p>
|
|
</li>
|
|
</template>
|