LoginSignup
2
1

More than 3 years have passed since last update.

'jQuery' is not defined を解決する。

Last updated at Posted at 2019-07-28

エラー

Module Warning (from ./node_modules/eslint-loader/index.js):
error: 'jQuery' is not defined

原因

jqueryを定義していない。

解決

main.jsにjqueryを定義する。
以下コードを追加。

main.js
import jquery from 'jquery'

参考

2
1
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
2
1