引入echarts报错Cannot read properties of undefined (reading ‘init‘)

在引入echarts需要使用关键字as,否则引入无效

在main方法中引入

错误

import Vue from 'vue'
import App from './App.vue'
import echarts from 'echarts'

Vue.config.productionTip = false

Vue.prototype.echarts = echarts

new Vue({
  render: h => h(App)
}).$mount('#app')

正确

import Vue from 'vue'
import App from './App.vue'
import * as echarts from 'echarts'

Vue.config.productionTip = false

Vue.prototype.echarts = echarts
new Vue({
  render: h => h(App)
}).$mount('#app')

在组件中引入

错误


正确


你可能感兴趣的:(vue.js,javascript,echarts)