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="{ 
          el: '#element',
          onDone: onDone,
          onCancel: onCancel
      }">
      Scroll callbacks
  </button>
  
  <h1 id="element">Hi. I'm element</h1>
</div>

CSS

h1, button {
  margin-bottom: 1000px;
}

JavaScript

new Vue({
  el: '#app',
  methods: {
    onDone() {
      alert('done')
    },

    onCancel(e) {
      alert('canceled')
      console.log(e)
    }
  }
})