element-plus/packages/icon/index.ts

12 lines
269 B
TypeScript
Raw Normal View History

2020-08-04 11:09:19 +08:00
import { App } from 'vue'
import type { SFCWithInstall } from '@element-plus/utils/types'
2020-08-04 11:09:19 +08:00
import Icon from './src/index.vue'
2020-10-29 17:28:26 +08:00
Icon.install = (app: App): void => {
2020-08-04 11:09:19 +08:00
app.component(Icon.name, Icon)
}
2020-10-29 17:28:26 +08:00
const _Icon: SFCWithInstall<typeof Icon> = Icon
export default _Icon