We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
So basically even though i give the component the ":end-date" parameter it shows me the dates only between Dec 29, 1968 and Jan 3 1970.
<calendar-heatmap :end-date="2023-12-12" :values="[{ date: '1969-6-6', count: 6 }]" dark-mode/>
Is it possible this is a bug?
The text was updated successfully, but these errors were encountered:
This happened because they have bad support for vue3, this happens for :values as well, there is two solution for this:
Sorry, something went wrong.
Yes, i ended up finding a solution using
<script setup lang="ts"> const currentDate = new Date() const endDate = currentDate.toISOString().split('T')[0] </script>
<template> <calendar-heatmap class="calendar" :end-date="endDate" ... /> </template>
No branches or pull requests
So basically even though i give the component the ":end-date" parameter it shows me the dates only between Dec 29, 1968 and Jan 3 1970.
<calendar-heatmap :end-date="2023-12-12" :values="[{ date: '1969-6-6', count: 6 }]" dark-mode/>
Is it possible this is a bug?
The text was updated successfully, but these errors were encountered: