index.ts 351 B

123456789101112131415
  1. import Select from './src/select.vue'
  2. import type { App } from 'vue'
  3. import type { SFCWithInstall } from '@element-plus/utils'
  4. Select.install = (app: App): void => {
  5. app.component(Select.name, Select)
  6. }
  7. const _Select = Select as SFCWithInstall<typeof Select>
  8. export default _Select
  9. export const ElSelectV2 = _Select
  10. export * from './src/token'