We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e23a126 commit b7a3077Copy full SHA for b7a3077
ui/src/components/markdown/EchartsRander.vue
@@ -12,7 +12,7 @@ const chartsRef = ref()
12
13
const style = ref({
14
height: '220px',
15
- width: '100%'
+ width: '100%',
16
})
17
18
function initChart() {
@@ -44,7 +44,7 @@ function evalParseOption(option_json: any) {
44
if (option_json.style) {
45
style.value = option_json.style
46
}
47
- const option = {}
+ let option = {}
48
tmp.value = echarts
49
eval(option_json.option)
50
return option
@@ -62,7 +62,7 @@ watch(
62
initChart()
63
64
65
- }
+ },
66
)
67
68
onMounted(() => {
0 commit comments