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.
24 lines
463 B
24 lines
463 B
<!--
|
|
@ 作者: 秦东
|
|
@ 时间: 2024-07-13 09:34:47
|
|
@ 备注: 日日历
|
|
-->
|
|
<script lang='ts' setup>
|
|
const props = defineProps({
|
|
bodyHight:Number,
|
|
});
|
|
|
|
//画板高度
|
|
const drawingBoardHeight = computed(()=>{
|
|
return props.bodyHight + 50
|
|
})
|
|
</script>
|
|
<template>
|
|
<div class="monthCalendarBox" :style="'height:calc(100vh - '+ drawingBoardHeight +'px)'"></div>
|
|
</template>
|
|
<style lang='scss' scoped>
|
|
.monthCalendarBox{
|
|
width: 100%;
|
|
margin-top: 10px;
|
|
}
|
|
</style>
|
|
|