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