UNPKG

@frontend_worker/query-selector

Version:

《远程搜索+单选》组件区别于element-ui或iview组件库的select远程搜索, ①将头部显示的值和下拉选项显示的值独立开来, ②避免远程加载时头部默认值显示异常, ③支持插槽自定义

21 lines (15 loc) 491 B
import QuerySelector from './components/querySelector'; const install = function(Vue) { if (install.installed) return; Vue.component('QuerySelector', QuerySelector); }; // auto install if (typeof window !== 'undefined' && window.Vue) { install(window.Vue); } const API = { version: process.env.VERSION, // eslint-disable-line no-undef install, QuerySelector }; module.exports.default = module.exports = API; // eslint-disable-line no-undef