nuxt-moment
v1.0.5
Published
Easy integration between Nuxt.js and Moment.js
Downloads
1,219
Maintainers
Readme
Nuxt-Moment-Module
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
Copyright (c) Dev.DY