Bonjour, j'ai un problème je me suis pas mal creusé la tête j'ai pas mal cherché sans suite... EN fait mon code semble correct mais je ne sais pourquoi je n'arrive pas à afficher le calendrier... Voici un aperçu...
<template>
<v-containerclass="leconteneur">
<v-row>
<v-colcols="12"md="6"class="mx-auto">
<v-menu
v-model="showDatePicker"
:close-on-content-click="false"
transition="scale-transition"
min-width="auto"
offset-y
>
<templatev-slot:activator="{ on, attrs }">
<v-text-field
v-model="selectedDate"
v-bind="attrs"
v-on="on"
outlined
prepend-icon="mdi-calendar"
readonly
label="Select Date"
></v-text-field>
</template>
<v-date-picker
v-model="selectedDate"
@input="showDatePicker=false"
></v-date-picker>
</v-menu>
</v-col>
<v-colcols="12"md="6"class="mx-auto">
<v-text-field
v-model="nouvelleTache"
label="Ajouter une tâche"
append-icon="mdi-plus"
@click:append="ajouterTache"
></v-text-field>
</v-col>
<v-colcols="12"md="6"class="mx-auto">
<v-card
v-for="(tache, indice) intaches"
:key="indice"
class="mb-4"
>
<v-card-title>
{{ tache }}
<v-spacer></v-spacer>
<v-btnicon @click="supprimerTache(indice)">
<v-icon>mdi-delete</v-icon>
</v-btn>
</v-card-title>
</v-card>
</v-col>
</v-row>
</v-container>
</template>
<scriptsetup>
import { ref } from'vue';
constgetLocalDateString= () => {
constdate=newDate();
date.setMinutes(date.getMinutes() -date.getTimezoneOffset()); // Adjust for local timezone