Updates to booking
All checks were successful
Build BAB Application Deployment Artifact / build (push) Successful in 1m58s

This commit is contained in:
2024-04-30 13:56:42 -04:00
parent 0de9991a49
commit 2f68877ce6
4 changed files with 106 additions and 73 deletions

View File

@@ -1,15 +0,0 @@
<template>
<q-banner :class="$q.dark.isActive ? 'bg-grey-9' : 'bg-grey-3'">
Use the calendar to pick a date. Select an available boat and timeslot
below.
</q-banner>
<BoatScheduleTableComponent v-model="reservation" />
</template>
<script setup lang="ts">
import { ref } from 'vue';
import BoatScheduleTableComponent from './boat/BoatScheduleTableComponent.vue';
import { Reservation } from 'src/stores/schedule.types';
const reservation = ref<Reservation | null>(null);
</script>