Pieterjan Maes

Results 6 comments of Pieterjan Maes

I updated, but still have the same warning ...

Last month there was an update to the vimeo/player.js repo, Maybe that has something to do with it? [https://github.com/vimeo/player.js/releases](https://github.com/vimeo/player.js/releases)

This works for me: ``` // ./plugins/locomotive.client.ts import LocomotiveScroll from 'locomotive-scroll'; export default defineNuxtPlugin(nuxtApp => { let locomotiveScroll: LocomotiveScroll | null = null; nuxtApp.hook('page:start', () => { locomotiveScroll?.destroy(); }); nuxtApp.hook('page:finish',...

Hi, I replied a few day's ago on an other related issue, this is how I use Locomotive scroll in Nuxt 3 => https://github.com/locomotivemtl/locomotive-scroll/issues/502#issuecomment-2136681236 Not sure if this is the...

@kieranmansfield, i would do it like this: [https://scroll.locomotive.ca/docs/#/attributes?id=data-scroll-to-href](https://scroll.locomotive.ca/docs/#/attributes?id=data-scroll-to-href) Add an id to the top of your page: ``` {{ buttonText }} ``` Or you could create a hook in the...