How can I import some jquery methods? Is there any ready-made solution? Or what parts need to be changed in jquery?
Try it
import { ajax } from 'jquery' console.log(ajax)
No, jquery mounts all methods to the $object, and all methods must be referenced through the $object.
Try it
No, jquery mounts all methods to the $object, and all methods must be referenced through the $object.