数通智联化工云平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

32 lines
530 B

<!--
@ 作者: 秦东
@ 时间: 2024-07-10 11:05:18
@ 备注: 日历
-->
<script lang="ts" setup>
import { ref } from 'vue'
import {
getMonthFinalDay,
getDate,
getMonday,
getMonth,
getYear
} from '@/components/DesignForm/app/calendar/calendar1/handle'
//引入日历
import CalendarPage from '@/components/DesignForm/app/calendar/calendar1/calendarPage.vue'
const value = ref(new Date())
let timek = new Date()
</script>
<template>
<CalendarPage :body-hight="265" />
</template>
<style lang='scss' scoped>
</style>