bastienGranger / vue-material-datepicker

55 stars 16 forks source link

Failed to mount component #6

Closed raphcadiz closed 7 years ago

raphcadiz commented 7 years ago

I'm getting this error when I have properly imported the package

import Datepicker from 'vue-material-datepicker'

export default {
    components: {
       'datepicker': Datepicker
    }
}

[Vue warn]: Failed to mount component: template or render function not defined. (found in component )

johnnymast commented 7 years ago

Try the following

Vue.component('Datepicker', require('vue-material-datepicker/src/Datepicker.vue'));