[events] Remove invalid ref

This commit is contained in:
Ferdinand Thiessen 2021-03-24 21:50:05 +01:00
parent 27ad9984d4
commit 61ed9e70e2
1 changed files with 0 additions and 3 deletions

View File

@ -45,7 +45,6 @@
/>
</q-toolbar>
<q-calendar-agenda
ref="calendar"
v-model="selectedDate"
:view="calendarRealView"
:max-days="calendarDays"
@ -85,7 +84,6 @@ export default defineComponent({
const windowWidth = ref(window.innerWidth);
const selectedDate = ref(date.formatDate(new Date(), 'YYYY-MM-DD'));
const proxyDate = ref('');
const calendar = ref<QCalendar.QCalendar>();
const calendarView = ref('week');
const calendarRealView = computed(() => (calendarDays.value != 7 ? 'day' : 'week'));
@ -193,7 +191,6 @@ export default defineComponent({
return {
asYear,
asMonth,
calendar,
selectedDate,
events,
calendarNext,