sumcumo / vue-datepicker

A datepicker Vue component. Compatible with Vue 2.x.
https://sumcumo.github.io/vue-datepicker/
Apache License 2.0
75 stars 22 forks source link

How to use dayCellContent slot? #117

Closed arwinvdv closed 3 years ago

arwinvdv commented 3 years ago

I use version 3.2.2 but the dayCellContent is not working: https://codesandbox.io/s/cocky-austin-fvzg6?file=/src/App.vue

Code used:

<DatePicker
      v-model="selected_date"
      :clear-button="false"
      :inline="true"
      :full-month-name="true"
    >
      <template #dayCellContent="{ cell }">
        <span><span>aa {{ cell.date }}</span></span>
      </template>
</DatePicker>

Can someone tell me what I'm doing wrong?

mst101 commented 3 years ago

My mistake, sorry!

@MrWook - the above PR should fix this. I also added a test to prevent it from occurring again.

MrWook commented 3 years ago

Ah shit, i failed with the release i'm sorry 🤦 The 3.2.2 release should not have the transition changes in it

MrWook commented 3 years ago

@arwinvdv Now i published correctly and the breaking changes (which introduced this bug) are gone. Please try out the new version 3.2.3

arwinvdv commented 3 years ago

@mst101 @MrWook Thanks for the fast fix!!