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