richardtallent / vue-simple-calendar

Simple Vue component to show a month-grid calendar with events
MIT License
878 stars 159 forks source link

ReadMe update #233

Closed yogeshgalav closed 7 months ago

yogeshgalav commented 7 months ago

The following code text in Slots->header

<calendar-view :show-date="myShowDate">
    <calendar-view-header slot="header" slot-scope="{ headerProps }" :header-props="headerProps" @input="setMyShowDate" />
</calendar-view>

needs to be updated with

<template #header="{headerProps}">
       <calendar-view-header :header-props="headerProps" @input="setShowDate" />
</template>
richardtallent commented 7 months ago

Thanks! I've updated the syntax across the board (including using the new shorthand v-bind feature in Vue 3.4)