mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-04 20:27:44 +08:00
14 lines
305 B
TypeScript
14 lines
305 B
TypeScript
import Icon from './src/index.vue'
|
|
|
|
import type { App } from 'vue'
|
|
import type { SFCWithInstall } from '@element-plus/utils/types'
|
|
|
|
Icon.install = (app: App): void => {
|
|
app.component(Icon.name, Icon)
|
|
}
|
|
|
|
const _Icon = Icon as SFCWithInstall<typeof Icon>
|
|
|
|
export default _Icon
|
|
export const ElIcon = _Icon
|