发现是引用的问题
在main.js引用的是
import echarts from 'echarts'
Vue.prototype.$echarts = echarts
最好官网的引用不是这样的应该改成下面就会好了
import * as echarts from 'echarts'
Vue.prototype.$echarts = echarts
发现是引用的问题
在main.js引用的是
import echarts from 'echarts'
Vue.prototype.$echarts = echarts
最好官网的引用不是这样的应该改成下面就会好了
import * as echarts from 'echarts'
Vue.prototype.$echarts = echarts