久久久久久AV无码免费看大片,亚洲一区精品人人爽人人躁,国产成人片无码免费爱线观看,亚洲AV成人无码精品网站,为什么晚上搞的时候要盖被子

在vue-cli4中使用jquery

時間:2021-08-14 22:02:07 類型:vue
字號:    

在vue-cli4中使用jquery

1,  安裝jquery

    npm install jquery -save

2, 項目下添加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");
				});
	})


<