Vue一个文件,echarts错误xAxis“0”未找到

piah890a  于 2023-11-21  发布在  Vue.js
关注(0)|答案(2)|浏览(331)

我是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我错过了什么吗?我的代码看起来和教程一样。

hjzp0vay

hjzp0vay1#

你用的是echarts的v5.x吗?如果是的话,那么你也需要导入GridComponent。参考github上的issue

bgibtngc

bgibtngc2#

使用vue 3 import {... GridComponent } from 'echarts/components';
return([ ...]);

相关问题