Распределила из events владельцев событий

This commit is contained in:
Daria Golova
2022-10-21 16:53:21 +03:00
parent f08cc48415
commit b08f91f9ae
5 changed files with 203 additions and 24 deletions

View File

@@ -4,7 +4,7 @@
calendar-schedule(
:current-date="currentDate"
:time-information="timeInformation"
:column-information="columnInformation"
:events-data="eventsData"
@previous-date="switchPreviousDate"
@next-date="switchNextDate"
@selected-layout="changeCalendarLayout"
@@ -27,13 +27,6 @@ export default {
dayEndTime: "18:00",
},
eventsData: [],
columnInformation: {
owners: [
"Захарова А.О.",
"Константинопольская Ю.В.",
"Коломойцев И.К.",
],
},
};
},
methods: {
@@ -63,5 +56,5 @@ export default {
<style lang="sass" scoped>
.calendar-container
width: calc(100% - 80px)
width: calc(100vw - 80px)
</style>