13 lines
		
	
	
		
			401 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			401 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import { VxeUI } from '@vxe-ui/core';
 | 
						|
import VxeImageComponent from './src/image';
 | 
						|
import { dynamicApp } from '../dynamics';
 | 
						|
export const VxeImage = Object.assign({}, VxeImageComponent, {
 | 
						|
    install(app) {
 | 
						|
        app.component(VxeImageComponent.name, VxeImageComponent);
 | 
						|
    }
 | 
						|
});
 | 
						|
dynamicApp.use(VxeImage);
 | 
						|
VxeUI.component(VxeImageComponent);
 | 
						|
export const Image = VxeImage;
 | 
						|
export default VxeImage;
 |