element-plus/packages/components/image/index.ts

14 lines
315 B
TypeScript
Raw Normal View History

2020-08-27 21:22:32 +08:00
import Image from './src/index.vue'
2020-10-29 17:28:26 +08:00
import type { App } from 'vue'
import type { SFCWithInstall } from '@element-plus/utils/types'
Image.install = (app: App): void => {
2020-08-27 21:22:32 +08:00
app.component(Image.name, Image)
}
2020-10-29 17:28:26 +08:00
const _Image = Image as SFCWithInstall<typeof Image>
export default _Image
export const ElImage = _Image