10 lines
174 B
Vue
10 lines
174 B
Vue
<template>
|
|
<h1 class="text-4xl font-bold text-primary-500">Tableau de bord</h1>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
useHead({
|
|
title: 'Tableau de bord'
|
|
})
|
|
</script>
|