Added sidebar to left side of calendar view
This commit is contained in:
17
src/views/CalendarPage.vue
Normal file
17
src/views/CalendarPage.vue
Normal file
@@ -0,0 +1,17 @@
|
||||
<script lang="ts" setup>
|
||||
import { useCalendar } from '@/stores/CalendarStore'
|
||||
|
||||
import Calendar from '@/components/calendar/Calendar.vue'
|
||||
import Sidebar from '@/components/calendar/Sidebar.vue'
|
||||
|
||||
const { validateUrlParams } = useCalendar()
|
||||
|
||||
validateUrlParams()
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<main class="h-full grid grid-cols-[auto_1fr]">
|
||||
<Sidebar />
|
||||
<Calendar />
|
||||
</main>
|
||||
</template>
|
||||
Reference in New Issue
Block a user