UNPKG

vue-dynamic-select

Version:

A VueJS plugin that provides a searchable and reactive select list component with no dependencies.

27 lines (23 loc) 671 B
import DynamicSelect from './DynamicSelect.vue' // Declare install function executed by Vue.use() export function install(Vue) { if (install.installed) return; install.installed = true; Vue.component('DynamicSelect', DynamicSelect); } // Create module definition for Vue.use() const plugin = { install, }; // Auto-install when vue is found (eg. in browser via <script> tag) let GlobalVue = null; if (typeof window !== 'undefined') { GlobalVue = window.Vue; } else if (typeof global !== 'undefined') { GlobalVue = global.Vue; } if (GlobalVue) { GlobalVue.use(plugin); } // To allow use as module (npm/webpack/etc.) export component export default DynamicSelect;