unity-calendar/components/main/calendar/frame/month.vue

28 lines
424 B
Vue

<script setup>
const props = defineProps(['monthname', 'daycount'])
</script>
<style scoped>
.headertext {
width: fit-content;
margin: auto;
}
</style>
<template>
<div class="month">
<div class="header">
<div class="headertext">
{{monthname}}
</div>
</div>
<MainCalendarFrameDays
:daycount=daycount />
</div>
</template>