vue echarts 适配

//换算方法
export function nowSize(val, initWidth = 1920) {
  // 当前视口宽度
  let nowClientWidth = document.documentElement.clientWidth;
  return val * (nowClientWidth / initWidth);
}

main.js

import {nowSize} from '@/utils/common'
Vue.prototype.$nowSize = nowSize

组件中:

 legend: {
          top: "10",
          type:'plain',
          icon:'stack', //这里可以将line的图例改成矩形图例
          itemWidth: this.$nowSize(15),
          itemHeight: this.$nowSize(15),
          textStyle: {
            color: "#fff",
            fontSize: this.$nowSize(14),
          },
   }

你可能感兴趣的:(vue echarts 适配)