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',
          easing: [.6, .80, .30, 1.9],
          duration: 2000 
      }">
      Scroll to #element
  </button>
  
  <h1 id="element">Hi. I'm element</h1>
</div>

CSS

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

JavaScript

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