unity-calendar/components/main/calendar/today.vue

22 lines
360 B
Vue

<style scoped>
.todaybound {
display: flex; flex-direction: column;
justify-content: space-around;
align-items: center;
height: 100%;
}
</style>
<template>
<div class="todaybound">
<MainCalendarTodayIs />
<MainCalendarTodayWeekday />
<MainCalendarTodayHoliday />
</div>
</template>