UNPKG

vxe-table-select-area

Version:

一个基于 vxe-table 的可区域选中复制、粘贴的组件

16 lines (13 loc) 398 B
import VxeSelect from './src/select' import VxeOption from './src/option' import VxeOptgroup from './src/optgroup' export const Select = Object.assign(VxeSelect, { Option: VxeOption, Optgroup: VxeOptgroup, install (Vue) { Vue.component(VxeSelect.name, VxeSelect) Vue.component(VxeOption.name, VxeOption) Vue.component(VxeOptgroup.name, VxeOptgroup) } }) export default Select