• vue-cli3项目中引入jquery 以及如何引进bootstrap


    1、安装jquery

    npm install jquery --save

    2、或则在package.json中指定版本号,然后运行npm install命令

    "dependencies": {
        "axios": "^0.18.0",
        "core-js": "^2.6.5",
        "jquery": "^3.4.1",
        "vue": "^2.6.10",
        "vue-awesome-swiper": "^3.1.3",
        "vue-router": "^3.0.3",
        "vuex": "^3.0.1"
      },

    3、在vue.config.js里面配置

    const webpack = require('webpack');
    const path = require('path');
    // vue.config.js
    module.exports = {
      // 选项...
      devServer: {
        port: 8089,
        // proxy:{
        //   '/': {
        //     target: 'http://192.168.0.125:3000/',
        //     changeOrigin: true,
        //     pathRewrite: {}
        //   },
        // }
      },
      configureWebpack: {//引入jquery
        plugins: [
          new webpack.ProvidePlugin({
            $:"jquery",
            jQuery:"jquery",
            "windows.jQuery":"jquery"
          })
        ]
      },
    
    }

    然后在页面里就可以愉快的使用jquery了

     如何引入bootstrap 

     npm install --save-dev bootstrap

    在main.js中引入

    import 'bootstrap/dist/css/bootstrap.min.css';
    import 'bootstrap/dist/js/bootstrap.min.js';

    然后运行,结果按照提示让执行这样的命令

    npm install --save popper.js

    然后,再运行  就能成功使用bootstrap了

  • 相关阅读:
    本周总结
    本周总结
    本周总结
    本周总结
    性能分析(4)
    大型网站高性能架构
    第二天大数据清洗
    性能分析(2)
    六大质量属性——性能分析(1)
    java设计模式9-代理模式
  • 原文地址:https://www.cnblogs.com/fqh123/p/10804524.html
Copyright © 2020-2023  润新知