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

20 lines
344 B
Vue

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