vue-l-carousel
vue-l-carousel copied to clipboard
main.js does not use passive event listeners
Replace t.addEventListener(e,n)
with: t.addEventListener(e,n,{passive:true})
Every eventListener must have {passive:true} to improve performance. Thanks