[Vuejs]-How to import moment.js in es6 file using having babel-loader.?

1👍

Have you tried using moment-es6 wrapper?

-1👍

Did you try like this?
I always use it like this then in vue.js

Package I Use

"moment": "^2.21.0",

/** * Moment * **/
    window.moment = require('moment');

And vue pages

 data(){
        return {
            page_data: '',
            moment: window.moment,
        }
    },

Leave a comment