vue-scrollto icon indicating copy to clipboard operation
vue-scrollto copied to clipboard

Adds a directive that listens for click events and scrolls to elements.

Results 101 vue-scrollto issues
Sort by recently updated
recently updated
newest added
trafficstars

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') ```

enhancement
help wanted

Adding event to allow preventDefault to be called and alter the flow of the event.

waiting for response

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...

nuxt

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...

help wanted

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...

nuxt

When I follow the README and try to use it within Nuxt as a module, it fails: ![image](https://user-images.githubusercontent.com/749885/79929329-c5f7ee00-8488-11ea-97e0-48f4b93485d7.png) When I import it as a plugin, for example [like this](https://github.com/rigor789/vue-scrollto/issues/154#issuecomment-575495061), it...

help wanted
nuxt

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...