Change locale in react-datepicker

后端 未结 6 1163
一向
一向 2021-02-04 03:30

I am using react-datepicker NPM package,
I tried to follow documentation but I was unable to import

registerLocale 

and

         


        
6条回答
  •  无人共我
    2021-02-04 03:40

    You don't even need to use registerLocale, just use import variable name ja without quotes :

    
    

    You can also set the default locale for all date picker fields with setDefaultLocale :

    constructor (props) {
        registerLocale("ja", ja);
        setDefaultLocale("ja");
    }
    

    Hope this helps.

提交回复
热议问题