vue2-autocomplete
vue2-autocomplete copied to clipboard
Use Browser connection. Failed to mount component: template or render function not defined.
[Vue warn]: Failed to mount component: template or render function not defined.
found in
---> <Autocomplete> <CustomerEditPage> <Root>
Vue.component('customer-edit-page', {
data: function () {
return {
}
},
components: {
autocomplete: Vue2Autocomplete
},
mounted() {
},
methods: {
getData() {
return 'ff';
}
}
})
})```
Same here.
@xVismutx did you found a solution? Thank you!
@joelcuevas Yes and no)) I decided not to use this component :)
A shame... did the same thing. :(
I can make it work with this configuration
Vue.component('customer-edit-page', {
data: function () {
return {
}
},
components: {
autocomplete: Vue2Autocomplete.default
},
mounted() {
},
methods: {
getData() {
return 'ff';
}
}
})
})