mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 09:20:51 +08:00
11 lines
222 B
TypeScript
11 lines
222 B
TypeScript
import { App } from 'vue'
|
|
import Select from './src/select.vue'
|
|
import Option from './src/option.vue'
|
|
|
|
Select.install = (app: App): void => {
|
|
app.component(Select.name, Select)
|
|
}
|
|
|
|
export { Option }
|
|
export default Select
|