vue-moment
vue-moment copied to clipboard
Cannot redefine property: $moment
Getting this error: Cannot redefine property: $moment
<script>
import Vue from 'vue';
Vue.use(require('vue-moment'));
...
</script>
version: 4.1.0
I had the same issue, in my case a vue component I have written as npm module uses VueMoment and then the host app also uses VueMoment, which ever is loaded last gets the error. In my case I have worked around with the following:
if (!Vue.moment) {
Vue.use(VueMoment)
}