mirror of
https://github.com/NotXia/notxia.github.io.git
synced 2025-12-16 03:31:46 +01:00
19 lines
671 B
Vue
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> |