我是Vue和echarts的新手。
我遵循了这个教程:https://www.freecodecamp.org/news/how-to-add-charts-and-graphs-to-a-vue-js-application-29f943a45d09/
直到我可以运行我的“npm run serve”命令。我打开了我的localhost,但是图表不在那里。我在控制台中得到一个错误,上面写着:Error:xAxis“0”not found我错过了什么吗?我的代码看起来和教程一样。
我是Vue和echarts的新手。
我遵循了这个教程:https://www.freecodecamp.org/news/how-to-add-charts-and-graphs-to-a-vue-js-application-29f943a45d09/
直到我可以运行我的“npm run serve”命令。我打开了我的localhost,但是图表不在那里。我在控制台中得到一个错误,上面写着:Error:xAxis“0”not found我错过了什么吗?我的代码看起来和教程一样。
2条答案
按热度按时间hjzp0vay1#
你用的是echarts的v5.x吗?如果是的话,那么你也需要导入
GridComponent
。参考github上的issue。bgibtngc2#
使用vue 3 import {... GridComponent } from 'echarts/components';
return([ ...]);