tiny-vue/examples/sites/demos/mobile-first/app/calendar-view/calendar-mode.vue

20 lines
354 B
Vue

<template>
<tiny-calendar-view :events="eventslist" :year="2023" :month="6" :modes="['month', 'timeline', 'schedule']">
</tiny-calendar-view>
</template>
<script>
import { CalendarView } from '@opentiny/vue'
export default {
components: {
TinyCalendarView: CalendarView
},
data() {
return {
eventslist: []
}
}
}
</script>