Skip to content

Commit

Permalink
docs(VCalendar): update dayHeader slot typo (#7036)
Browse files Browse the repository at this point in the history
The v-slot should be "dayHeader" not "dayHeadere".  

This typo prevents the all day events from displaying at the top when using the example code.
  • Loading branch information
samdickerman authored and MajesticPotatoe committed Apr 21, 2019
1 parent b3bd35b commit 415f8ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/docs/src/examples/calendars/weekly.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
type="week"
>
<!-- the events at the top (all-day) -->
<template v-slot:dayHeadere="{ date }">
<template v-slot:dayHeader="{ date }">
<template v-for="event in eventsMap[date]">
<!-- all day events don't have time -->
<div
Expand Down

0 comments on commit 415f8ca

Please sign in to comment.