vue引入echart错误提示Error in mounted hook: "Error: Component series.line not exists. Load it first

在vue中引入vue-echarts组件的时候报错了,如下图

Error in mounted hook: "Error: Component series.line not exists. Load it first 

这里的series.line只是某一个图表, 其他报错例如series.bar之类的 都是这个原因
vue引入echart错误提示Error in mounted hook:

解决方法

找到项目中node_modules/vue-echarts/components>echarts.vue
找到引入echarts的位置

import echarts from 'echarts/lib/echarts'

改为

import echarts from 'echarts'

至此 问题完美修复!

你可能感兴趣的:(VUE,iView)