Vue Cli 3導入jQuery

1731 ワード

  • インストールjQuery
  • npm install jquery --save
    
  • vue.config.js構成
  • const webpack = require('webpack')
    module.exports = {
        configureWebpack: {
        plugins: [
          new webpack.ProvidePlugin({
                $:"jquery",
                jQuery:"jquery",
                "windows.jQuery":"jquery"
            })
        ]
      }
    }
    
  • main.js導入
  • import $ from 'jquery'
    

    導入完了