mirror of
https://gitee.com/xuliangzhan_admin/vxe-table.git
synced 2026-01-21 05:27:57 +08:00
16 lines
398 B
JavaScript
16 lines
398 B
JavaScript
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
|