Merge pull request #50 from dderbentsov/UC-21

Создал компонент сайдбара для страницы календаря
This commit is contained in:
frontgavrilin
2022-10-21 01:09:17 +03:00
committed by GitHub
3 changed files with 36 additions and 3 deletions

View File

@@ -1,5 +1,6 @@
<template lang="pug">
.calendar-container
.calendar-container.flex
calendar-sidebar
calendar-schedule(
:current-date="currentDate"
:time-information="timeInformation"
@@ -13,9 +14,10 @@
<script>
import * as moment from "moment/moment";
import CalendarSchedule from "./components/CalendarSchedule.vue";
import CalendarSidebar from "./components/CalendarSidebar.vue";
export default {
name: "TheCalendar",
components: { CalendarSchedule },
components: { CalendarSchedule, CalendarSidebar },
data() {
return {
calendarLayout: "",