safari + vueで"Total canvas memory use exceeds the maximum limit"対応
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;
}
Author And Source
この問題について(safari + vueで"Total canvas memory use exceeds the maximum limit"対応), 我々は、より多くの情報をここで見つけました https://qiita.com/TakenoriHirao/items/dca43de0204cb8f30848著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .