vue-calendar-heatmap
vue-calendar-heatmap copied to clipboard
when change lenguaje to months
Declare "my_locale" object in your data() section and pass it as property to your calendar-heatmap
<calendar-heatmap :locale="my_locale" ... />
data() {
return {
(...)
my_locale = {
months: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'],
days: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'],
on: 'on',
less: 'Less',
more: 'More'
}
(...)
}