2020-11-20 20:24:16 +08:00
|
|
|
import { App } from 'vue'
|
2020-11-27 11:15:20 +08:00
|
|
|
import { Option } from '@element-plus/select'
|
2020-11-20 20:24:16 +08:00
|
|
|
|
|
|
|
Option.install = (app: App): void => {
|
|
|
|
app.component(Option.name, Option)
|
|
|
|
}
|
|
|
|
|
|
|
|
export default Option
|