13 lines
		
	
	
		
			465 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			465 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import { VxeUI } from '@vxe-ui/core';
 | 
						|
import VxeAnchorLinkComponent from '../anchor/src/anchor-link';
 | 
						|
import { dynamicApp } from '../dynamics';
 | 
						|
export const VxeAnchorLink = Object.assign({}, VxeAnchorLinkComponent, {
 | 
						|
    install(app) {
 | 
						|
        app.component(VxeAnchorLinkComponent.name, VxeAnchorLinkComponent);
 | 
						|
    }
 | 
						|
});
 | 
						|
dynamicApp.use(VxeAnchorLink);
 | 
						|
VxeUI.component(VxeAnchorLinkComponent);
 | 
						|
export const AnchorLink = VxeAnchorLink;
 | 
						|
export default VxeAnchorLink;
 |