LoginSignup
18
4

More than 5 years have passed since last update.

Moment.js で moment.locale('ja') が効かないときは

Last updated at Posted at 2017-10-21

現環境は moment@^2.19.1 。半年くらい前からドキュメントで理解できなかった部分なので。

index.js
import moment from 'moment'
moment.locale('ja')

moment()
  .startOf('hour')
  .fromNow()

# => 6 minutes ago

index.js
import 'moment/locale/ja'

import moment from 'moment'
moment()
  .startOf('hour')
  .fromNow()
# => 6分前

これで設定できました。

18
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
18
4