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'
Share
Post a Comment
for "Es6 Import – Jquery Is Not Defined"
Post a Comment for "Es6 Import – Jquery Is Not Defined"