0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

safari + vueで"Total canvas memory use exceeds the maximum limit"対応

Posted at

safari + iPad OS 13で、"Total canvas memory use exceeds the maximum limit"くらいました。

こちらの記事を参考に解決。
https://qiita.com/minimo/items/b724c6793f45aca5e6f5

safari(iOS12)で"Total canvas memory use exceeds the maximum limit"が出る場合の対処法

vueでtemplateで記載されたcanvasが解放されない場合があったので、beforeDestroyで解放してあげる。

  beforeDestroy() {
    const canvas = this.$refs["my_canvas"] as HTMLCanvasElement;
    canvas.width = 0;
    canvas.height = 0;    
  }

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?