慕妹3242003
你在main.js中引入的echarts库,但在其他组件中使用,肯定用不了。两种方法:如果只在这个组件中用到echarts,推荐在这个组件中引用echarts,而不是在main.js中。如果必须在main.js中引用,建议这样写:// main.jsimport charts from 'charts'Vue.prototype.$echarts = charts// ...在其他组件中使用// componentlet myChart = this.$echarts.init(this.$refs.myChart)