Files
vxe-table/packages/select/index.js
xuliangzhan 9fcb84d727 优化重构
2020-02-24 23:14:25 +08:00

13 lines
346 B
JavaScript

import VxeSelect from './src/select'
import VxeOption from './src/option'
import VxeOptgroup from './src/optgroup'
VxeSelect.install = function (Vue) {
Vue.component(VxeSelect.name, VxeSelect)
Vue.component(VxeOption.name, VxeOption)
Vue.component(VxeOptgroup.name, VxeOptgroup)
}
export const Select = VxeSelect
export default VxeSelect