[Vuejs]-Uncaught TypeError: Cannot read properties of undefined (reading 'fn')

-1👍

import $ from 'jquery'

Looks like it’s undefined. Try instead

import * as $ from 'jquery'
👤mbojko

Leave a comment