Сделала колонку, добавила данные в server.js
This commit is contained in:
@@ -20,6 +20,7 @@
|
||||
:current-date="currentDate"
|
||||
:day-start-time="validateStartTime"
|
||||
:day-end-time="validateEndTime"
|
||||
:column-information="columnInformation"
|
||||
)
|
||||
</template>
|
||||
|
||||
@@ -30,7 +31,11 @@ import CalendarBackground from "./CalendarBackground.vue";
|
||||
import CalendarClockColumn from "./CalendarClockColumn.vue";
|
||||
export default {
|
||||
name: "CalendarSchedule",
|
||||
components: { CalendarHeader, CalendarBackground, CalendarClockColumn },
|
||||
components: {
|
||||
CalendarHeader,
|
||||
CalendarBackground,
|
||||
CalendarClockColumn,
|
||||
},
|
||||
props: {
|
||||
currentDate: {
|
||||
type: Object,
|
||||
@@ -44,6 +49,12 @@ export default {
|
||||
return {};
|
||||
},
|
||||
},
|
||||
columnInformation: {
|
||||
type: Object,
|
||||
default() {
|
||||
return {};
|
||||
},
|
||||
},
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
|
||||
Reference in New Issue
Block a user