Skip to content

Calendar日历

介绍

日历组件用于选择日期。该组件使用DrawApi绘制,渲染速度极快。

按需引入

将components目录下easy-calendar组件复制到你的项目conponents目录。

代码演示

基础用法

html
<easy-calendar :lunar="true" @change="change"></easy-calendar>
<easy-calendar :lunar="true" @change="change"></easy-calendar>

显示农历

html
<easy-calendar :lunar="true" @change="change"></easy-calendar>
<easy-calendar :lunar="true" @change="change"></easy-calendar>

自定义选中日期颜色

html
<easy-calendar active-color="#f00"  @change="change"></easy-calendar>
<easy-calendar active-color="#f00"  @change="change"></easy-calendar>

API

Props

参数说明类型默认值
lunar显示农历booleanfalse
active-color选中日期颜色string#00f
today-color今日颜色string#f00

Events

事件名说明回调参数
change选择日期回调date: string

Released under the MIT License.