Files
notxia.github.io/src/views/resume/sections/Work.vue
2023-03-19 12:14:10 +01:00

19 lines
671 B
Vue

<template>
<div>
<h2 class="text-4xl font-bold tracking-wide">{{ t("working experience") }}</h2>
<ActivityParagraph :title="t('pcto toyota')" subtitle="Toyota Material Handling Manufacturing Italy"
:right_text="`${t('december')} 2019 | ${t('july')} 2019 | ${t('february')} 2019`">
{{ t("pcto toyota description") }}
</ActivityParagraph>
</div>
</template>
<script setup lang="ts">
import { useI18n } from "vue-i18n";
import ActivityParagraph from "../components/ActivityParagraph.vue";
import locale from "@/locales/resume";
const { t } = useI18n({ messages: locale });
</script>