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

@@ -1,4 +1,5 @@
<template>
<ToolbarComponent />
<q-page class="row justify-center">
<q-img alt="OYS Logo" src="~assets/oysqn_logo.png" fit="scale-down" />
<q-list class="full-width mobile-only">
@@ -25,6 +26,7 @@
<script lang="ts" setup>
import { links } from 'src/router/navlinks.js';
import { useAuthStore } from 'stores/auth';
import ToolbarComponent from 'components/ToolbarComponent.vue';
const auth = useAuthStore();
</script>