mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-15 18:01:24 +08:00
11 lines
269 B
TypeScript
11 lines
269 B
TypeScript
|
import Select from './src/select.vue'
|
||
|
|
||
|
import type { App } from 'vue'
|
||
|
import type { SFCWithInstall } from '@element-plus/utils/types'
|
||
|
|
||
|
Select.install = (app: App): void => {
|
||
|
app.component(Select.name, Select)
|
||
|
}
|
||
|
|
||
|
export default Select as SFCWithInstall<typeof Select>
|