icehaunter / vue3-datepicker

Simple datepicker component for Vue 3
https://icehaunter.github.io/vue3-datepicker/
MIT License
151 stars 151 forks source link

possible to translate the component to brazilian portuguese ? #84

Closed alessandronuunes closed 1 year ago

alessandronuunes commented 2 years ago

I would like to translate the names of the months and the day of the week to Brazilian standard

icehaunter commented 1 year ago

https://icehaunter.github.io/vue3-datepicker/config.html#locale prop is available just for that.

Example for your case:

<script setup lang="ts">
import { ptBR } from 'date-fns/locale'
import Datepicker from 'vue3-datepicker'
</script>

<template>
  <Datepicker :locale="ptBR">
</template>