0👍
try install this component to vue by add function install in component’s entry file.like:
import VueMq from './vue-mq.vue'
const VueMq = {
install: function(Vue){
Vue.component('VueMq', VueMq)
}
}
export default VueMq
- [Vuejs]-Data received from laravel controller not updating to vue variable
- [Vuejs]-How to solve Unknown custom element problem?
Source:stackexchange.com