10 lines
199 B
Vue
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> |