Cannot read property '$moment' of undefined
See original GitHub issuehow to use nuxt moment?
i was added nuxt moment on module nuxt.config.js and i try to call moment on mounted() a page but has undefined $moment.
nuxt.config.js
modules: [
...
'@nuxtjs/moment',
...
],
pages
mounted() {
console.log(this.$moment) // undefined $moment
},
Issue Analytics
- State:
- Created 5 years ago
- Comments:10 (4 by maintainers)
Top Results From Across the Web
Cannot read property 'moment' of undefined - Stack Overflow
I have a problem with momentjs and I have no idea why. I wrote this code a couple of days ago and it...
Read more >can't use moment with vue.js - Laracasts
i am trying to use moment with vue.js at laravel project and i installed moment ... Error in render: "TypeError: Cannot read property...
Read more >Problem with moment.js and datatable.js
Uncaught TypeError : Cannot read property 'moment' of undefined at HTMLDocument.<anonymous> (CPPListView?sfdc.tabName=01r4E000000DZav:11665)
Read more >Moment.js - Maggie's Blog
Posts about Moment.js written by Maggie Pint. ... fromNow() //Uncaught TypeError: Cannot read property 'replace' of undefined. That didn't go well did it?...
Read more >Moment Library not loading correctly - Esri Community
On load, I immediately get and error: 'Uncaught TypeError: Cannot read properties of undefined (reading 'tz')'. Researching this; I found an ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
same error here, when i call function in template
it works just fine, when it’s used in mounted() it’s fine too
but when i want to use it in apollo query variable, then it’s undefined
Make sure you did installed Nuxt Moment:
yarn add moment @nuxtjs/moment
ORnpm i moment @nuxtjs/moment