Developing Booking Form

This commit is contained in:
2023-11-26 09:21:04 -05:00
parent 8200bcde52
commit a3cdbbfbbd
13 changed files with 423 additions and 172 deletions

View File

@@ -1,5 +1,27 @@
<template>
<q-page padding> </q-page>
<q-page padding>
<q-item v-for="link in navlinks" :key="link.label">
<q-btn
:icon="link.icon"
color="primary"
size="1.25em"
:to="link.to"
:label="link.label"
rounded
class="full-width"
align="left"
/>
</q-item>
</q-page>
</template>
<script setup lang="ts"></script>
<script setup lang="ts">
const navlinks = [
{
icon: 'more_time',
to: '/schedule/book',
label: 'Create a Reservation',
},
{ icon: 'calendar_month', to: '/schedule/view', label: 'View Schedule' },
];
</script>