mirror of
https://github.com/element-plus/element-plus.git
synced 2024-11-27 02:01:15 +08:00
16 lines
357 B
TypeScript
16 lines
357 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)
|
|
}
|
|
|
|
const _Select = Select as SFCWithInstall<typeof Select>
|
|
|
|
export default _Select
|
|
export const ElSelectV2 = _Select
|
|
|
|
export * from './src/token'
|