mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-04 12:17:37 +08:00
6 lines
133 B
TypeScript
6 lines
133 B
TypeScript
import { App } from 'vue'
|
|
import Icon from './src/index.vue'
|
|
export default (app: App): void => {
|
|
app.component(Icon.name, Icon)
|
|
}
|