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
446 B

import { VxeUI } from '@vxe-ui/core';
import VxeDatePanelComponent from './src/date-panel';
import { dynamicApp } from '../dynamics';
export const VxeDatePanel = Object.assign({}, VxeDatePanelComponent, {
install(app) {
app.component(VxeDatePanelComponent.name, VxeDatePanelComponent);
}
});
dynamicApp.use(VxeDatePanel);
VxeUI.component(VxeDatePanelComponent);
export const DatePanel = VxeDatePanel;
export default VxeDatePanel;