naive-ui/packages/common/Select/index.js

11 lines
262 B
JavaScript
Raw Normal View History

2019-06-28 13:50:15 +08:00
/* istanbul ignore file */
2019-11-14 11:57:37 +08:00
import Select from './src/SelectAdapter.vue'
import SelectOption from './src/SelectOption'
2019-06-14 19:33:41 +08:00
Select.install = function (Vue) {
Vue.component(Select.name, Select)
2019-12-01 10:30:17 +08:00
Vue.component('NSelectOption', SelectOption)
2019-06-14 19:33:41 +08:00
}
export default Select