17 lines
		
	
	
		
			423 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			423 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { App } from 'vue'
 | 
						|
import { VxeUI } from '@vxe-ui/core'
 | 
						|
import VxeRowComponent from './src/row'
 | 
						|
import { dynamicApp } from '../dynamics'
 | 
						|
 | 
						|
export const VxeRow = Object.assign({}, VxeRowComponent, {
 | 
						|
  install (app: App) {
 | 
						|
    app.component(VxeRowComponent.name as string, VxeRowComponent)
 | 
						|
  }
 | 
						|
})
 | 
						|
 | 
						|
dynamicApp.use(VxeRow)
 | 
						|
VxeUI.component(VxeRowComponent)
 | 
						|
 | 
						|
export const Row = VxeRow
 | 
						|
export default VxeRow
 |