element-plus/packages/image/index.ts

6 lines
136 B
TypeScript
Raw Normal View History

2020-08-27 21:22:32 +08:00
import { App } from 'vue'
import Image from './src/index.vue'
export default (app: App): void => {
app.component(Image.name, Image)
}