10 lines
		
	
	
		
			277 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			277 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import type { App } from "vue";
 | |
| import Component from "./index.vue";
 | |
| import type { IDefineComponent } from "../../types/index";
 | |
| 
 | |
| Component.install = (app: App) => {
 | |
|   app.component(Component.name || "LayContainer", Component);
 | |
| };
 | |
| 
 | |
| export default Component as IDefineComponent;
 |