Files
cmms/vue/routes/index.vue
T
2026-09-11 16:06:49 +02:00

10 lines
199 B
Vue

<template>
<h1 class="title">{{ t('menu.dashboard') }}</h1>
</template>
<script setup>
import { onMounted, ref } from 'vue';
import { useI18n } from 'vue-i18n';
const { t } = useI18n();
</script>