2a0918bbfe
Auto Tag Develop / tag (push) Successful in 9s
| Numéro du ticket | Titre du ticket | |------------------|-----------------| | | | ## Description de la PR ## Modification du .env ## Check list - [x] Pas de régression - [x] TU/TI/TF rédigée - [x] TU/TI/TF OK - [ ] CHANGELOG modifié Reviewed-on: #16 Co-authored-by: tristan <tristan@yuno.malio.fr> Co-committed-by: tristan <tristan@yuno.malio.fr>
13 lines
277 B
Vue
13 lines
277 B
Vue
<template>
|
|
<div>
|
|
<PageHeader>{{ $t('dashboard.title') }}</PageHeader>
|
|
<p class="text-neutral-500">{{ $t('dashboard.welcome') }}</p>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
const { t } = useI18n()
|
|
|
|
useHead({ title: t('dashboard.title') })
|
|
</script>
|