echarts Cannot read property ‘init‘ of undefined 报错问题
一、查看容器是否有宽高(容器一定要有宽高)<div id="main" style="height:800px;width:600px;" />二:查看引入对错我直接 importecharts from 'echarts’时也会报错,所以后面修改了引入时的写法import * as echarts from 'echarts’三:初始化实例时开始用的let myChart = thi
一、查看容器是否有宽高(容器一定要有宽高)
<div id="myChart" style="height:800px;width:600px;" />
二:查看引入对错
我直接 import echarts from 'echarts’时也会报错,所以后面修改了引入时的写法import * as echarts from 'echarts’
三:初始化实例时
开始用的let chart = this.
e
c
h
a
r
t
s
.
i
n
i
t
(
t
h
i
s
.
echarts.init(this.
echarts.init(this.refs.myChart) 这种写法也会报错,后来就改成了
let chart = echarts.init(document.getElementById(‘myChart’))的写法
更多推荐
所有评论(0)