最近项目中封装了一个日历组件,用于节假日管理,支持输入默认选中的日期,选择管理日期。
效果图:
calendar组件:
1
2
8
9
29
10
12
13
14 {{ item }}
11
15
27
28 @click="handleItemClick(item, i, index)" @mouseover="handleItemMove(item, i, index)">
22
23 {{ item.date | cellDate }}
24
26
31
32
282
283
调用案例和参数说明(我这里说全局插件引入,单独使用需要自行import导入):
1
2