Merge pull request #50 from dderbentsov/UC-21
Создал компонент сайдбара для страницы календаря
This commit is contained in:
@@ -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: "",
|
||||
|
||||
Reference in New Issue
Block a user