はじめに
VueとTypeScriptを使用した案件で、jQueryの$.eachと$.inArrayを使いたかったため、Vueに、jQueryを導入しました。
npm インストール
npm install --save jquery @types/jquery
import
create.vue
import $ from "jquery";
最後に
以上を行う前は、機能としてはちゃんと動いていましたが、以下のエラーが出ていました。
Cannot find name '$'. Do you need to install type definitions for jQuery? Try `npm i --save-dev @types/jquery` and then add `jquery` to the types field in your tsconfig.
npm インストールとimportを行いエラーが出なくなりました。