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