element-plus/packages/components/select-v2/index.ts
2022-02-09 16:59:08 +08:00

16 lines
354 B
TypeScript

import Select from './src/select.vue'
import type { App } from 'vue'
import type { SFCWithInstall } from '@element-plus/utils-v2'
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'