Replies: 1 comment
-
It's working for me 🤷♂️ Make sure there's no other element hiding the border. Or you can just set the container's style directly. And There's no option to set the height of the row height. Reference: #906 (comment) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Version
@toast-ui/vue-calendar: ^1.1.1
Test Environment
edge, mac OS Monterey 12.5
Current Behavior
`
<script> theme ={ 'common.border': '1px solid', 'month.schedule.height': '60px', } </script>// template
<Calendar
ref="calendar"
v-loading="loading"
:view="viewMode"
:month="monthTitle"
:schedules="events"
:theme="theme"
:use-creation-popup="false"
:use-detail-popup="false"
@clickSchedule="onClickSchedule"
@beforeCreateSchedule="onBeforeCreateSchedule"
/>
`
The border only show inside the calendar. I want full calendar border
And the schedule grid doesn't change height.
Expected Behavior
border
schedule grid height
Beta Was this translation helpful? Give feedback.
All reactions