Sépare l'app-bar et le navigation drawer dans deux composants

This commit is contained in:
2024-02-23 16:33:03 +00:00
parent 0e5f144ffb
commit bf695dc5ef
3 changed files with 15 additions and 13 deletions

View File

@ -0,0 +1,13 @@
<script>
// L'affichage lateral gauche pour l'état du jeu (ex. Score)
</script>
<template>
<v-navigation-drawer>
<v-list-item title="Brain Blast" subtitle="The cultural quizzzz"></v-list-item>
<v-divider></v-divider>
<v-list-item link title="List Item 1"></v-list-item>
<v-list-item link title="List Item 2"></v-list-item>
<v-list-item link title="List Item 3"></v-list-item>
</v-navigation-drawer>
</template>