LoginSignup
29
25

More than 5 years have passed since last update.

nuxtでmomentを動かす

Last updated at Posted at 2018-06-13

nuxtでmomentを触る時に苦労したので導入を説明します。

nuxtコミュニテイのmoduleを使いましょう
nuxt-community/moment-module

基本的にはここのreadmeに従えば良いです。

yarn add moment @nuxtjs/moment OR npm i moment @nuxtjs/moment

nuxt.config.js
{
  modules: [
    ['@nuxtjs/moment', ['ja']]
 ]
}

これだけでvueインスタンスへ$momentを登録します。そのためdatepickerなどのmoduleを入れようとして間違えてvue-momentやmoment自体を導入しpluginsにてVue.useとかすると意図していない動作をします。(当たり前)

View側では$momentでアクセスすることが可能です。
注意してほしいのはVueのインスタンスに登録されているのでvueインスタンスに組み込まれるメソッド内(methodsやcomputedなど)ではthis.$momentでアクセスします。

29
25
2

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
29
25