element-plus/packages/option/index.ts
2020-11-27 11:19:13 +08:00

9 lines
174 B
TypeScript

import { App } from 'vue'
import { Option } from '@element-plus/select'
Option.install = (app: App): void => {
app.component(Option.name, Option)
}
export default Option