JSFiddle - React, Tailwind, and code Playground
HTML
<div id="group-send-sms">
<span v-text="count"></span>
<input @click="test" type="button" value="TEST" />
</div>
JavaScript
var vm = new Vue({
el: '#group-send-sms',
data: {
count: 0,
},
methods: {
test: function() {
if (this.count >= 100) {
return
}
this.count += 1
window.requestAnimationFrame(() => this.test())
},
},
})