You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

12 lines
407 B

import { VxeUI } from '@vxe-ui/core';
import VxeInputConstructor from './src/input';
import { dynamicApp } from '../dynamics';
export const VxeInput = Object.assign(VxeInputConstructor, {
install(app) {
app.component(VxeInputConstructor.name, VxeInputConstructor);
}
});
dynamicApp.use(VxeInput);
VxeUI.component(VxeInputConstructor);
export const Input = VxeInput;
export default VxeInput;