mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-20 16:20:25 +08:00
7 lines
195 B
TypeScript
7 lines
195 B
TypeScript
|
|
import * as echarts from 'echarts'
|
||
|
|
|
||
|
|
export default function(dom: any, theme: any = null, option: any) {
|
||
|
|
let chart = echarts.init(dom, theme);
|
||
|
|
chart.setOption(option);
|
||
|
|
return chart;
|
||
|
|
}
|