bpo-elt-transfer
Version:
elementui表格穿梭框,基于elt-transfer的自用定制。
19 lines (14 loc) • 339 B
JavaScript
import eltTransfer from './bpoEltTransfer/src/bpoEltTransfer'
const components = [ eltTransfer ];
function install(Vue) {
components.map(component => {
Vue.component(component.name, component);
})
}
if(typeof window !== undefined && window.Vue) {
install(window.Vue);
}
export default {
eltTransfer,
install
}