This time I will show you how to introduce and use the jq plug-in in vue. What are the precautions for vue to introduce and use the jq plug-in. The following is a practical case, let's take a look.
Today I made the official website and made unslider a command, but it kept prompting $(el).unslider() no a function, I thought it was complicated at first. Later, I read a lot of posts on the Internet. Most of them modified webpack.base.config.js. I tried it carefully and found that it is indeed correct on the Internet. During the trial, I reminded You'd better add all three of these, such as the unslider plug-in, (function(){})(window.jQuery)
{ jQuery: "jquery", "window.jQuery": "jquery", $: "jquery" }
Modify webpack.base.conf.js
plugins: [ new webpack.optimize.CommonsChunkPlugin('common.js'), new webpack.ProvidePlugin({ jQuery: "jquery", "window.jQuery": "jquery", $: "jquery" }) ]
I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the PHP Chinese website!
Recommended reading:
JS operation browser opening and closing
How to encapsulate Canvas into a plug-in with js
js uses regular expressions for password strength verification
The above is the detailed content of How to introduce and use jq plug-in in vue. For more information, please follow other related articles on the PHP Chinese website!