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

21 lines
324 B
Vue

<template>
<tiny-calendar-view>
<template #tool>
<p>此处为自定义工具栏插槽</p>
</template>
</tiny-calendar-view>
</template>
<script>
import { CalendarView } from '@opentiny/vue'
export default {
components: {
TinyCalendarView: CalendarView
},
data() {
return {}
}
}
</script>