Files
matosbox/frontend/components/I18nStub.vue

11 lines
216 B
Vue

<template>
<div class="card" style="margin-bottom: 16px;">
<h3>{{ t('i18n.title') }}</h3>
<p>{{ t('i18n.description') }}</p>
</div>
</template>
<script setup lang="ts">
const { t } = useI18n()
</script>