JSFiddle - React, Tailwind, and code Playground

by rigor789

HTML

<script src="https://unpkg.com/[email protected]"></script>
<script src="https://unpkg.com/[email protected]"></script>
<div id="app">
  <button v-scroll-to="'#element'">Go to #element</button>
  
  <div class="space"></div>
  
  <h1 id="element">Hi. I'm element</h1>
  
  <div class="space"></div>
</div>

CSS

.space {
  height: 1000px;
}

JavaScript

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