[Vuejs]-VUEJS "Vue Hotel Datepicker" component

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')
     }
})

Leave a comment