After, yarn add moment
I tried...
import moment from 'moment'
Vue.prototype.moment = moment
&
import moment from 'moment'
Vue.use(moment)
&
var moment = require('moment');
Vue.use(moment)
Nothing really works. I am getting all kinds of weird error msgs!
Can anyone tell, how to use moment library with Vue.js 2?