[WIP] Разделил компоненты календаря

This commit is contained in:
megavrilinvv
2023-05-25 12:51:06 +03:00
parent 17bf66c00f
commit 34674bd248
19 changed files with 29 additions and 1 deletions

View File

@@ -0,0 +1,17 @@
<template lang="pug">
.calendar-container.flex
calendar-sidebar
</template>
<script>
import CalendarSidebar from "@/pages/newCalendar/components/calendarSidebar.vue";
export default {
components: { CalendarSidebar },
};
</script>
<style lang="sass" scoped>
.calendar-container
width: calc(100vw - 80px)
</style>