日历组件 - IkFullCalendar
props
props | 类型 | 说明 | 默认值 |
---|---|---|---|
modelValue | Array | 绑定日程数组 | [] |
options | Object | 属性,具体查看 https://fullcalendar.io/ | |
removable | Boolean | 是否可删除 | false |
tooltipFieldName | string | 描述 | 'remark' |
事件
名称 | 说明 |
---|---|
update:modelValue | 更新日程数据 |
示例代码
vue
<script lang="ts" setup>
import { IkFullCalendar } from 'iking-web-ui'
const events = ref<any[]>([])
</script>
<template>
<IkPageMain style="padding: 16px; box-sizing: border-box">
<IkFullCalendar v-model="events" />
</IkPageMain>
</template>
<style scoped lang="scss">
</style>