蜜桃精品成人影片,99国产精品偷窥熟女精品视频,啊灬啊灬啊灬快灬A片免费,b站大全永不收费免费下载软件吗,重囗味sM在线观看无码

在vue-cli4中使用jquery

時(shí)間:2021-08-14 22:02:07 類型:vue
字號:    

在vue-cli4中使用jquery

1,  安裝jquery

    npm install jquery -save

2, 項(xiàng)目下添加vue.config.js文件, 并添加內(nèi)容如下:

const webpack = require('webpack')
 
module.exports = {
  chainWebpack: config => {
    config.plugin('provide').use(webpack.ProvidePlugin, [{
      $: 'jquery',
      jquery: 'jquery',
      jQuery: 'jquery',
      'window.jQuery': 'jquery'
    }])
  }
}

3, 在vue文件中引入并使用

import $ from 'jquery';
	export default{
		name:'Header',
	}
	$(function(){
		$("#navs>li").hover(function() {
					var li_w=$(this).width();
					$(this).children("ul").width(li_w).fadeIn("slow");
				}, function() {
					$(this).children("ul").fadeOut("slow");
				});
	})


<