mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-05 04:37:47 +08:00
6503e55277
* refactor(utils-v2): migrate utils * refactor(utils-v2): migrate utils * refactor(utils-v2): migrate utils * refactor(utils): remove * refactor(utils): rename * refactor(utils): move EVENT_CODE to constants * refactor: remove generic
16 lines
351 B
TypeScript
16 lines
351 B
TypeScript
import Select from './src/select.vue'
|
|
|
|
import type { App } from 'vue'
|
|
import type { SFCWithInstall } from '@element-plus/utils'
|
|
|
|
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'
|