JSFiddle - React, Tailwind, and code Playground
by rigor789
HTML
<script src="https://unpkg.com/[email protected]/dist/vue.js"></script>
<script src="https://unpkg.com/[email protected]/vue-scrollto.js"></script>
<div id="app">
<button v-scroll-to="'#element'">
Scroll to #element
</button>
<h1 id="element">Hi. I'm element</h1>
</div>
CSS
h1, button {
margin-bottom: 1000px;
}
JavaScript
VueScrollTo.setDefaults({
container: "body",
duration: 500,
easing: "ease",
offset: 0,
cancelable: undefined,
onDone: false,
onCancel: false,
x: false,
y: true
})
new Vue({
el: '#app',
methods: {
}
})