标签:charts str echarts name log ref style not pre
以上错误出现在使用 echarts 组件时,未导入或者使用不正确的情况下。
检查是否导入 line 或者 bar 这一类具体的 chart,比如:
import ‘echarts/lib/chart/line‘
如果导入了,那么检查是否使用错误的情况。
比如,以下 type 使用的是 bar,但是实际并没有导入,而应该改为 line:
series: [{ name: ‘xxx‘, type: ‘bar‘, data: [5, 20, 20] }]
Link:https://www.cnblogs.com/farwish/p/12918846.html
[FAQ] Error: Component series.bar not exists. Load it first. (echarts)
标签:charts str echarts name log ref style not pre
原文地址:https://www.cnblogs.com/farwish/p/12918846.html