Vue中正確使用jQuery的方法

來源:互聯網
上載者:User

標籤: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的方法

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.