30 lines
622 B
Vue
30 lines
622 B
Vue
<template>
|
|
<div>
|
|
<div class="columns is-multiline mx-0">
|
|
<div
|
|
class="column is-4"
|
|
v-for="v in months"
|
|
>
|
|
<EventSummary
|
|
v-bind="{
|
|
events: events,
|
|
mode: 'simple',
|
|
vyear: v.year,
|
|
vmonth: v.month,
|
|
}"
|
|
></EventSummary>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import EventSummary from "@/components/datepicker/EventSummary";
|
|
export default {
|
|
components: {
|
|
EventSummary,
|
|
//EventSummary: () => import('@/components/datepicker/EventSummary')
|
|
},
|
|
props: ["events", "months"],
|
|
};
|
|
</script>
|