UNPKG

vxe-gantt

Version:
14 lines (13 loc) 304 B
import VxeUI from './ui'; import VxeGantt from './gantt'; const { setConfig } = VxeUI; const components = [ VxeGantt ]; export function install(app, options) { setConfig(options); components.forEach(component => app.use(component)); } export { VxeUI }; // Components export * from './gantt';