JSFiddle - React, Tailwind, and code Playground
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>