UNPKG

wx-svelte-gantt

Version:

Interactive and customizable Svelte Gantt chart component

15 lines (12 loc) 263 B
import { mount } from "svelte"; import Gantt from "./components/Export.svelte"; function init(target, config, skin) { mount(Gantt, { target: target ? document.querySelector(target) : document.body, props: { config, skin, }, }); } export { init };