element-plus/packages/select-v2/index.ts

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>