NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/vxe-table/packages/select/index.js
2023-09-14 14:47:11 +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