日韩精品欧美激情国产一区_中文无码精品一区二区三区在线_岛国毛片AV在线无码不卡_亞洲歐美日韓精品在線_使劲操好爽好粗视频在线播放_日韩一区欧美二区_八戒八戒网影院在线观看神马_亚洲怡红院在线色网_av无码不卡亚洲电影_国产麻豆媒体MDX

在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");
				});
	})


<