mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-03 03:38:41 +08:00
14 lines
315 B
TypeScript
14 lines
315 B
TypeScript
import Image from './src/index.vue'
|
|
|
|
import type { App } from 'vue'
|
|
import type { SFCWithInstall } from '@element-plus/utils/types'
|
|
|
|
Image.install = (app: App): void => {
|
|
app.component(Image.name, Image)
|
|
}
|
|
|
|
const _Image = Image as SFCWithInstall<typeof Image>
|
|
|
|
export default _Image
|
|
export const ElImage = _Image
|