element-plus/packages/select/index.ts

11 lines
222 B
TypeScript
Raw Normal View History

import { App } from 'vue'
import Select from './src/select.vue'
2020-11-27 11:15:20 +08:00
import Option from './src/option.vue'
Select.install = (app: App): void => {
app.component(Select.name, Select)
}
2020-11-27 11:15:20 +08:00
export { Option }
export default Select