|  | 
 
| 魅族手机对于快应用支持度这么差吗?完全比不上其他的 手机平台
 const canvasDom = this.$element('canvas1');
      const ctx = canvasDom.getContext('2d');
      ctx.clearRect(0, 0, 400, 400);
      ctx.beginPath();
      ctx.fillStyle = '#d81818';
      ctx.rect(0, 0, 400, 400);
      ctx.fill();
      ctx.closePath();
同样的一句代码,其他厂商平台都没有问题 ! | 
 |