欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

海创软件组--vue使用jquery

程序员文章站 2024-03-25 22:46:25
...

一:终端控制台下载jquery
输入npm install jquery -s,默认下载最新版本,你需要控制版本下载,可以在jquery后加@版本
海创软件组--vue使用jquery

二:配置
打开build文件夹下的webpack.base.conf.js文件:
1、首行添加:const webpack=require(‘webpack’)
2、module.exports中添加:

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

海创软件组--vue使用jquery
三:在main文件中引入jquery即可

import $ from 'jquery'

四:效果

<template>
  <div >
    <p class="my-p">
      哈哈
    </p>
  </div>
</template>
<script>
  export default {
    name: 'demo',
    mounted () {
      console.log('使用jquery      ' + $('.my-p').text())
    }
  }
</script>

海创软件组--vue使用jquery