The time
is not displayed inside my buttons.
I have tried a lot of styling options but none seems to work.
Keep in mind that when I just open the html file the values are displayed correctly but when I runserver with django they vanish.
<v-btn text
class="ma-2"
v-for="time in availableTimes"
:key="time"
@click="selectSession(time)"
outlined>
{{ time }}
</v-btn>
Here is the js function just in case.
selectSession(time) {
this.selectedSessions = [];
this.selectedSessions.push({ date: this.date, time: time });
console.log(time); }