Basic calendar view

This commit is contained in:
2023-11-24 00:12:58 -05:00
parent a6540a2a02
commit 8200bcde52
30 changed files with 406 additions and 57 deletions

View File

@@ -0,0 +1,26 @@
<template>
<q-tabs class="mobile-only">
<!-- <q-tab name="Home" icon="home" to="index"></q-tab> -->
<q-route-tab name="Boats" icon="sailing" to="/boat"></q-route-tab>
<q-route-tab
name="Schedule"
icon="calendar_month"
to="/schedule"
></q-route-tab>
<q-route-tab
name="Checklists"
icon="checklist"
to="/checklist"
></q-route-tab>
<q-route-tab
name="Reference"
icon="info_outline"
to="/reference"
></q-route-tab>
<q-route-tab name="Tasks" icon="build" to="/task">
<q-badge color="red" floating> NEW </q-badge>
</q-route-tab>
</q-tabs>
</template>
<script setup lang="ts"></script>