{ src: '~plugins/moment' } в нукст конфиг,
как мне теперь получить к нему доступ в компоненте ??
created() {
console.log(this.$moment);
}
или this.moment не работает
попробуй просто moment. const moment = require('moment'); require('moment/locale/ru'); Vue.use(require('vue-moment'), { moment }); ...... return moment().format(format);
main.js import MomentTimezone from 'moment-timezone'; import VueMoment from 'vue-moment'; Vue.use(VueMoment, { moment: MomentTimezone }); В компоненте this.$moment или же Vue.moment
Обсуждают сегодня