0👍
If youre using a build tool, You must import the component before registering it with the vue instance
import HotelDatePicker from 'vue-hotel-datepicker'
new Vue({
el: '#app',
components: { HotelDatePicker }
})
Otherwise use require
new Vue({
el: '#app',
components: {
'vue-hotel-datepicker': require('vue-hotel-datepicker')
}
})
- [Vuejs]-Vuejs computed or methods: which one is best to use vuex getters?
- [Vuejs]-Drilldown in Map with Vue.js
Source:stackexchange.com