[Vuejs]-Horizontal scroll not working when using Locomotive Scroll in Vue.js

0👍

Just figured out, i had to use locomotive on About with direction: horizontal insteada the GSAP.

const scroll = new LocomotiveScroll({
    el: document.querySelector('[data-scroll-container]'),
    smooth: true,
    direction: 'horizontal',
});

Leave a comment