mirror of
https://github.com/ArthurDanjou/artsite.git
synced 2026-01-14 15:54:13 +01:00
23 lines
420 B
Vue
23 lines
420 B
Vue
<script lang="ts" setup>
|
|
defineProps({
|
|
title: {
|
|
type: Object as PropType<{ en: string, fr: string, es: string }>,
|
|
required: true,
|
|
},
|
|
})
|
|
|
|
const { locale } = useI18n()
|
|
</script>
|
|
|
|
<template>
|
|
<div class="space-y-8">
|
|
<USeparator
|
|
:label="locale === 'en' ? title.en : locale === 'es' ? title.es : title.fr"
|
|
size="xs"
|
|
/>
|
|
<ul class="space-y-8">
|
|
<slot />
|
|
</ul>
|
|
</div>
|
|
</template>
|