UNPKG

element-plus

Version:

A Component Library for Vue3.0

11 lines (7 loc) 291 B
import { Option } from '@element-plus/select' import type { SFCWithInstall } from '@element-plus/utils/types' const _Option: SFCWithInstall<typeof Option> = Option as SFCWithInstall<typeof Option> _Option.install = app => { app.component(_Option.name, _Option) } export default _Option