標籤:ons efi import col 問題 結果 window 腳手架 doc
題主Vue小白,入門demo時想在其中使用jQuery(當然可能是不推薦的做法哈,畢竟倆兒的風格不一樣,但萬一你就需要呢 _^ ^_),結果遇到問題,最終倒騰解決。
編譯報錯:$ is undefined or no-undef ‘$‘ is not defined
假設你已經使用vue-cli搭建好了開發的腳手架,接下來,看下面。
1.NPM 安裝 jQuery,項目根目錄下運行以下代碼
npm install jquery --save
2.webpack配置
在項目根目錄下的build目錄下找到webpack.base.conf.js檔案,在開頭使用以下代碼引入webpack,因為該檔案預設沒有引用。
var webpack = require(‘webpack‘)
然後在module.exports中添加一段代碼,
// 原有代碼resolve: { extensions: [‘.js‘, ‘.vue‘, ‘.json‘], alias: {‘vue$‘: ‘vue/dist/vue.esm.js‘,‘@‘: resolve(‘src‘) }},// 添加代碼plugins: [ new webpack.ProvidePlugin({$: "jquery",jQuery: "jquery",jquery: "jquery","window.jQuery": "jquery" })],// 原有代碼module: { rules: [// ...... ]}
然後許多其他解決辦法到此就說在main.js裡匯入就可以了,然而題主照著做了。
main.js裡匯入jQuery
import ‘jquery‘
在Vue組件裡使用 $ or jQuery 寫了操作dom的代碼
接著啟動項目
npm run dev
但是編譯卻報錯了:
http:
//eslint.org/docs/rules/no-undef ‘$‘ is not defined or
http:
//eslint.org/docs/rules/no-undef ‘jQuery‘ is not defined
咋回事呢???
3.eslint 檢查
機智的朋友肯定想到跟eslint有關,沒錯,這時候需要做的下一步就是要修改根目錄下.eslintrc.js檔案了,在改檔案的module.exports中,為env添加一個索引值對 jquery: true 就可以了,也就是:
env: { // 原有 browser: true, // 添加 jquery: true}
再次 npm run dev ,OK了,沒報錯,趕緊去組件裡試一下吧,console.log($(‘選取器‘)) ,你會發現成功使用jQuery擷取到了DOM。
轉: https://www.jb51.net/article/127102.htm
Vue中正確使用jQuery的方法