效果图

在这里插入图片描述

安装

环境

"vue": "^3.2.6" "vite": "^2.5.4"

介绍

解决思路 利用css 缩放 来处理大屏适配的问题,
项目地址

安装

npm i calendar-vue3

引入

import {calendarVue} from 'calendar-vue3'
import 'calendar-vue3/dist/style.css'

使用示例

<template>
<!-- tablecommon -->
 <el-scrollbar class="commonBoxmp" style="background:#c48">
   <calendarVue style="height:720px"
   @handleScopeOf="handleScopeOf"
   @handleCurrent="handleCurrent"
   @handleCurrentEvent="handleCurrentEvent"
   >
     <template #content="{index,data}">
     <div>
        <h3 v-if="state.activeDate==dayjs(data.date).format('YYYY-MM-DD')">✔️ </h3>
        <h4> {{dayjs(data.date).format("YYYY-MM-DD")}} </h4>
     </div>
     </template>
   </calendarVue>
  </el-scrollbar>
  
</template>

<script setup lang="ts">
import {ref,reactive,onMounted} from 'vue';
import {useRouter,useRoute} from 'vue-router'
import {calendarVue} from 'calendar-vue3'
import 'calendar-vue3/dist/style.css'//1.1.0-beta.10 版本
import dayjs from "dayjs";
const router = useRouter()
   const route = useRoute()
    onMounted(()=>{
    })
/*
基本数据类型
引用数据类型(复杂类型) 个人建议 ref初始化变量 
ref 和 reactive 本质我们可以简单的理解为ref是对reactive的二次包装, 
ref定义的数据访问的时候要多一个.value
*/
 const count =ref(0);
 const state:any = reactive({
   activeDate:""
 })
 const handleScopeOf = (e:any)=>{
      setTimeout(() => {
     console.log('ehandleScopeOf :>> ', e.next());
   }, 2000);
}

const handleCurrentEvent = (e:any)=>{
  
   setTimeout(() => {
     console.log('handleCurrentEvent :>> ', e.next());
   }, 2000);
}
const handleCurrent = (e:any)=>{
  
 state.activeDate =  dayjs(e.date).format("YYYY-MM-DD")
 console.log('handleCurrent :>> ', e);
}

</script>

<style  scoped lang="scss" >

</style>

事件

事件名说明回调参数
handleCurrent左击日历才会触发date:当前日期
handleScopeOf右键选择添加日程范围选择才会触发1、startDate:开始时间,endDate:结束时间。2、next 函数 点击结束日期清空界面选择效果
handleCurrentEvent右键选择添加日程才会触发1、date。2、next 函数 点击结束日期清空界面选择效果

插槽

content

   <calendarVue style="height:720px"
  @handleScopeOf="handleScopeOf"
   @handleCurrent="handleCurrent"
   @handleCurrentEvent="handleCurrentEvent"
   >
     <template #content="{index,data}">
     <div>
        <h4> {{dayjs(data.date).format("YYYY-MM-DD")}}</h4>
     </div>
     </template>
   </calendarVue>
当前时间展示内容
参数说明类型
index当前日期下表索引值number
data.date当前日期Date

BLUESKY
3 声望1 粉丝