-
Let say i want to use |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
I wouldn't actually recommend to use axios for Ajax, use fetch instead, but if you insist, all you need to do is install axios with |
Beta Was this translation helpful? Give feedback.
-
It's worked for me, I installed JQuery with Code/*
* BASE/APP
*/
// import './utils/utils.fetch'
// import './utils/utils.search'
// import './utils/utils.router'
import $ from 'jquery';
import slick from 'slick-carousel';
console.log('console.log(slick, $):', slick, $); Screenshot |
Beta Was this translation helpful? Give feedback.
It's worked for me, I installed JQuery with
yarn add jquery
and slick withyarn add slick-carousel
it's worked well.Check the Console log.
Code
Screenshot