vue3-datepicker
vue3-datepicker copied to clipboard
How to change the language for the days of the week?
I am confused with the documentation on how to change the language for the days of the week. Could you please give an actual example?
https://icehaunter.github.io/vue3-datepicker/config.html#locale prop is available just for that.
Example for your case:
<script setup lang="ts">
import { ru } from 'date-fns/locale'
import Datepicker from 'vue3-datepicker'
</script>
<template>
<Datepicker :locale="ru">
</template>