JSFiddle - React, Tailwind, and code Playground
by Megi93
HTML
<div id="app">
<button v-on:click="fontSize++">Increase font size</button>
<button v-on:click="fontSize--">Decrease font size</button>
<p v-bind:style="{ fontSize: fontSize + 'px' }">Font size is {{ fontSize }}</p>
</div>
JavaScript
new Vue({
el: '#app',
data: {
return {
fontSize: 10,
}
}
});