[Vuejs]-VueMq custom breakpoints and imports

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

Leave a comment