[Vuejs]-Console Error : Moment Timezone requires Moment.js. in Vue

0👍

I fixed my error by changing package json file manually.

i just removed updgrade symbol.

    "moment": "^2.18.1",
    "moment-timezone": "^0.5.28",

to

    "moment": "2.18.1",
    "moment-timezone": "0.5.28",

Leave a comment