当前位置 : 主页 > 网络编程 > 其它编程 >

vue中使用jQuery

来源:互联网 收集:自由互联 发布时间:2023-07-02
1、npminstalljquery--save2、在webpack.base.config.js中添加module.exports{context:path.resolve( 1、 npm install jquery --save   2、在webpack.base.config.js中添加 module.exports {context: path.resolve(__dirname, ../),entry: {app:
1、npminstalljquery--save2、在webpack.base.config.js中添加module.exports{context:path.resolve(

1、 npm install jquery --save

 

2、在webpack.base.config.js中添加

module.exports {context: path.resolve(__dirname, ../),entry: {app: ./src/main.js},......plugins: [new webpack.ProvidePlugin({jQuery: "jquery",jquery:"jquery",$: "jquery",“window.jQuery”:"jquery"})]}

3、若有eslint检查在.eslint.js中的module.export中添加

env: { // 原有browser: true, // 添加 jquery: true}

4、在main.js中导入jQuery

import jquery

 

上一篇:WeChall-Training:Crypto-CaesarI-Writeup
下一篇:没有了
网友评论