vue.runtime.esm.js?2b0e:619 [Vue warn]: Error in created hook: “TypeError: Cannot read properties of

Record an error

This error is reported by echarts. The reason for the error is: the mounting function is written in created. Just move the function to mounted.

 created() {
    // this.initCharts();
  },
  mounted() {
    this.initCharts();
  },

Guess you like

Origin blog.csdn.net/z_langjitianya/article/details/127898258