nuxt-community / moment-module

Efficient Moment.js integration for Nuxt
MIT License
195 stars 12 forks source link

this.$moment(...).tz is not a function #64

Closed AlxZb closed 4 years ago

AlxZb commented 4 years ago

Hi everyone, I trying used timezone option but I have this issue, maybe I'm load it wrong

this.$moment(...).tz is not a function

My nuxt.config in modules is:

['@nuxtjs/moment', { moment: { timezone: true } }],

And I'm use:

"@nuxtjs/moment": "^1.6.1", "nuxt": "^2.0.0",

Thanks for replies!

ricardogobbosouza commented 4 years ago

Hi @AlxZb
Your configuration is wrong, try this:

['@nuxtjs/moment', { timezone: true }]
AlxZb commented 4 years ago

@ricardogobbosouza thanks! It works now