vue3-datepicker icon indicating copy to clipboard operation
vue3-datepicker copied to clipboard

How to change the language for the days of the week?

Open eyey28 opened this issue 4 years ago • 1 comments

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?

eyey28 avatar Jul 28 '21 05:07 eyey28

...

spoil349 avatar Aug 16 '21 18:08 spoil349

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>

icehaunter avatar Jun 04 '23 13:06 icehaunter