Files
vxe-table/packages/select/index.js
xuliangzhan 4e987f60a0 优化重构
2020-02-26 09:56:01 +08:00

13 lines
349 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 Select111 = VxeSelect
export default VxeSelect