chore(组件): 组件尽量使用异步导入模式

This commit is contained in:
2026-01-04 14:40:00 +08:00
parent 4da852944e
commit 9415f397d2
172 changed files with 11520 additions and 10979 deletions

View File

@@ -44,7 +44,7 @@
<script>
import Calendar from './util.js';
import uniCalendarItem from './uni-calendar-item.vue';
/**
* Calendar 日历
* @description 日历组件可以查看日期,选择任意范围内的日期,打点操作。常用场景如:酒店日期预订、火车机票选择购买日期、上下班打卡等
@@ -67,7 +67,7 @@ import uniCalendarItem from './uni-calendar-item.vue';
*/
export default {
components: {
uniCalendarItem
uniCalendarItem: () => import('./uni-calendar-item.vue'),
},
props: {
date: {