uniapp qiun charts H5使用echarts的eopts配置不生效

 原因是:使用web的要设置 echartsH5

:echartsH5="true" 


...
data() {
    return {
      chartData: {},
      backc: 'rgb(254,254,254)',
      eopts: {
        dataLabel:false,
        legend: {
          show:false
        },
        xAxis: {
          type: 'category',
          disableGrid: true,
         axisLine: {show: false}
        },
        yAxis: {
          show:false,
           axisLine: {show: false}
        },
        series: [
  
        ]
      }
    }
  },

你可能感兴趣的:(java,前端,服务器)