美文网首页
vue 引入jquery

vue 引入jquery

作者: 飞鱼_JS | 来源:发表于2017-08-26 23:26 被阅读0次

一、webpack.base.conf.js 文件中添加以下代码

var webpack = require("webpack")

plugins: [
    new webpack.ProvidePlugin({
      $: "jquery",
      jQuery: "jquery",
      jquery: "jquery",
      "window.jQuery": "jquery"
    })
  ]

二、main.js中写入以下

import  jQuery  from 'jquery'
或 import  $ from 'jquery'

相关文章