nuxt-moment

1.0.5 • Public • Published

Nuxt-Moment-Module

npm version npm downloads Circle CI Codecov Dependencies Standard JS License

Easy integration between Nuxt.js and Moment.js

Infos

Install

Install with npm:

npm i nuxt-moment

nuxt.config.js:

module.exports = {
  modules: [
    // Simple usage
    'nuxt-moment'
  ]
}

Usage

Component

export default {
  data () {
    return {
      date: this.$moment().format('LTS')
    }
  },
  computed: {
    computedDate () {
      return this.$moment(new Date).format('LL')
    }
  },
  methods: {
    getDate () {
      return this.$moment()
    }
  }
}

Plugin

export default function({ $moment }) {
  console.log($moment().format('LTS'))
}

Store

export const state = () => ({
  date: new Date()
})
 
export const mutations = {
  MUTATION (state) {
    state.date = this.$moment().day(10)
  }
}
 
export const actions = {
  action ({state, commit}) {
    commit('SAMPLE_MUTATIONS', this.$moment().day(5))
  }
}

License

MIT License

Copyright (c) Dev.DY

/nuxt-moment/

    Package Sidebar

    Install

    npm i nuxt-moment

    Weekly Downloads

    217

    Version

    1.0.5

    License

    MIT

    Unpacked Size

    6.4 kB

    Total Files

    6

    Last publish

    Collaborators

    • kdydesign