JSFiddle - React, Tailwind, and code Playground

by rigor789

HTML

<script src="https://unpkg.com/[email protected]"></script>
<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' }">
    Scroll to #element (with el)
  </button>
  
  <button v-scroll-to="{ element: '#element' }">
    Scroll to #element (with element)
  </button>
  
  <h1 id="element">Hi. I'm element</h1>
</div>

CSS

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

JavaScript

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