How do I change the language of moment.js?

前端 未结 20 1534
别那么骄傲
别那么骄傲 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 17:11

    This one just works by auto detecting the current user location.

    import moment from "moment/min/moment-with-locales";
    
    // Then use it as you always do. 
    moment(yourDate).format("MMMM Do YYYY, h:mm a")
    

提交回复
热议问题