UNPKG
wx-svelte-gantt
Version:
latest (2.7.0)
2.7.0
2.6.2
2.6.1
2.6.0
2.5.2
2.5.1
2.4.4
2.4.3
2.4.2
2.4.1
2.3.0
2.2.1
2.2.0
2.1.1
2.1.0
2.0.2
2.0.1
2.0.0-beta-3
2.0.0-beta-2
1.2.0
Interactive and customizable Svelte Gantt chart component
svar.dev/svelte/gantt/
svar-widgets/gantt
wx-svelte-gantt
/
src
/
export.js
15 lines
(12 loc)
•
263 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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 };