13 lines
		
	
	
		
			419 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			419 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import { VxeUI } from '@vxe-ui/core';
 | 
						|
import VxeSelectComponent from './src/select';
 | 
						|
import { dynamicApp } from '../dynamics';
 | 
						|
export const VxeSelect = Object.assign(VxeSelectComponent, {
 | 
						|
    install: function (app) {
 | 
						|
        app.component(VxeSelectComponent.name, VxeSelectComponent);
 | 
						|
    }
 | 
						|
});
 | 
						|
dynamicApp.use(VxeSelect);
 | 
						|
VxeUI.component(VxeSelectComponent);
 | 
						|
export const Select = VxeSelect;
 | 
						|
export default VxeSelect;
 |