Javascript

ESLintに'defineProps' is not defined.(no-undef)と言われる

環境 ESLint 8.0.1 Vue 3.2.20 対策 ESLintの設定ファイルに、グローバル変数として定義する。 $ cat .eslintrc { "globals": { "defineProps": "readonly", "defineEmits": "readonly", "defineExpose": "readonly", "withDefaults": "readonly" } } 参考 U…

iOSのSafariでWebKitBlobResource error 1

JavascriptからAPIを叩いて、ファイルをダウンロードしていたところ、iOSのSafariから以下のように言われてしまった。 Safari cannot open the page. The error was: "The operation couldn't be completed. (WebKitBlobResource error 1)". MacのSafari、Ch…