chore: install prettier
This commit is contained in:
@@ -1,19 +1,29 @@
|
||||
<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
|
||||
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>
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
import EventSummary from '@/components/datepicker/EventSummary'
|
||||
import EventSummary from "@/components/datepicker/EventSummary";
|
||||
export default {
|
||||
components: {
|
||||
EventSummary
|
||||
EventSummary,
|
||||
//EventSummary: () => import('@/components/datepicker/EventSummary')
|
||||
},
|
||||
props: ['events', 'months']
|
||||
}
|
||||
</script>
|
||||
props: ["events", "months"],
|
||||
};
|
||||
</script>
|
||||
|
||||
Reference in New Issue
Block a user