How do I change the language of moment.js?

前端 未结 20 1535
别那么骄傲
别那么骄傲 2020-11-29 16:27

I am trying to change the language of the date which is being set by moment.js. The default one is English, but I want to set the German language. These is what I tried:

20条回答
  •  无人及你
    2020-11-29 16:59

    I am not sure what changed but importing the language file like this worked for me

    import 'moment/src/locale/fr';
    moment.locale('fr)
    

    Notice the src in the import statement

提交回复
热议问题