UNPKG

element-plus

Version:

A Component Library for Vue3.0

11 lines (7 loc) 269 B
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>