// Import vue component import ByjoveModelCrud from './ByjoveModelCrud.vue' // Declare install function executed by Vue.use() export function install(Vue) { if (install.installed) return; install.installed = true; Vue.component('ByjoveModelCrud', ByjoveModelCrud); } // Create module definition for Vue.use() const plugin = { install, }; // Auto-install when vue is found (eg. in browser via