mirror of
https://gitee.com/xuliangzhan_admin/vxe-table.git
synced 2026-01-21 05:27:57 +08:00
13 lines
361 B
TypeScript
13 lines
361 B
TypeScript
import { App } from 'vue'
|
|
import VxeInputConstructor from './src/input'
|
|
import { dynamicApp } from '../dynamics'
|
|
|
|
export const Input = Object.assign(VxeInputConstructor, {
|
|
install (app: App) {
|
|
dynamicApp.component(VxeInputConstructor.name, VxeInputConstructor)
|
|
app.component(VxeInputConstructor.name, VxeInputConstructor)
|
|
}
|
|
})
|
|
|
|
export default Input
|