vue-scrollto
vue-scrollto copied to clipboard
Adds a directive that listens for click events and scrolls to elements.
Add usage sample to readme for Vue 3 - added in #371. For example in a cdn/browser usage: ```js const app = Vue.createApp({}) app.directive('scroll-to', VueScrollTo) app.mount('#app') ```
Adding event to allow preventDefault to be called and alter the flow of the event.
i have a right to left layout and it is in Persian (a RTL language). I need a new option for VueScrollTo. something like an option called `reverseDirection: true`. is...
Instead of: ``` ... modules: [ ["vue-scrollto/nuxt", { duration: 0 }], ], ... ``` This: ``` ... modules: [ "vue-scrollto/nuxt", ], scrollto: { duraiton: 0, } ... ``` i import...
I have a component and using two or maybe more scrollings. I looked at Simultaneous Scrolling but never have an idea about how to implement it in Nuxt. Can you...
When I do `npm run serve`, I do not see any issues but when I build the application with `npm run build`, I get the following error: ``` 42:22 Could...
I saw a relative question here with that "problem" but it didn't helped me so much. I am trying to create x scrolling (dynamic) slider. So here is my code...
When I follow the README and try to use it within Nuxt as a module, it fails:  When I import it as a plugin, for example [like this](https://github.com/rigor789/vue-scrollto/issues/154#issuecomment-575495061), it...
There is conflict with another package v-scroll-spy. Turns out both are using $scrollTo. Is there a way I can rename it? (I'm using Nuxtjs) My solution is not to use...
When scrolling we should check if the provided value dont exceeds the scroll limit. If we target value higer then maxScroll the easing effect is useless. If computed scroll value...