JSFiddle - React, Tailwind, and code Playground

by ChangJoo Park

HTML

<div id="app">
  <div>{{ counter }}</div>
  <button v-on:click="increment">Increment</button>
</div>
<script>
  new Vue({
    el: 'app',
    data: {
      counter: 0
    },
    methods: {
      increment() {
        this.counter++;
      }
    }
  });

</script>