mirror of
https://github.com/ArthurDanjou/artdanj-resume.git
synced 2026-01-21 18:23:19 +01:00
23 lines
389 B
Vue
23 lines
389 B
Vue
<script setup lang="ts">
|
|
import { useI18n } from 'vue-i18n'
|
|
|
|
defineProps({
|
|
title: {
|
|
default: 'Title',
|
|
required: true,
|
|
},
|
|
content: {
|
|
default: 'Content',
|
|
required: true,
|
|
},
|
|
})
|
|
|
|
const { t } = useI18n()
|
|
</script>
|
|
|
|
<template>
|
|
<div class="mb-2">
|
|
<strong class="mr-2">{{ t(title) }}</strong><span class="dark:text-gray-200">{{ content }}</span>
|
|
</div>
|
|
</template>
|