Time Select
Some checks failed
Build BAB Application Deployment Artifact / build (push) Failing after 38s

This commit is contained in:
2024-04-28 19:07:00 -04:00
parent 1a18881980
commit de04b53914
7 changed files with 502 additions and 146 deletions

View File

@@ -1,7 +1,7 @@
<template>
<q-page padding>
<q-page>
<q-list>
<q-form @submit="onSubmit" @reset="onReset" class="q-gutter-md">
<q-form @submit="onSubmit" @reset="onReset" class="q-gutter-sm">
<q-input
bottom-slots
v-model="bookingForm.name"
@@ -70,7 +70,7 @@
<script setup lang="ts">
import { reactive, ref, computed, watch } from 'vue';
import { useAuthStore } from 'src/stores/auth';
import { Boat, useBoatStore } from 'src/stores/boat';
import { Boat } from 'src/stores/boat';
import { Dialog, date } from 'quasar';
import BoatSelection from 'src/components/scheduling/BoatSelection.vue';
import { makeDateTime } from '@quasar/quasar-ui-qcalendar';