ES6 Import – JQuery Is Not Defined
I'm using Gulp and Browserify for my build process, except I'm having trouble using third party jQuery plugins – showing error jQuery is not defined The following is my file stru
Solution 1:
Maybe you need use './'
import $ from 'jquery'
import plugin from './jquery-plugin'
EDITED, my new answer below:
Try this way:
import * as jqueryPlugin from 'jquery-plugin'
Post a Comment for "ES6 Import – JQuery Is Not Defined"