JSFiddle - React, Tailwind, and code Playground
HTML
<script src="https://unpkg.com/[email protected]/dist/vue.js"></script>
<div id="app">
<input type="radio" :checked="isRadio">
<button @click="change">change radio!</button>
</div>
JavaScript
new Vue({
el: '#app',
data () {
return {
isRadio: false
}
},
mounted () {
this.isRadio = true
},
methods: {
change () {
this.isRadio = !this.isRadio
}
}
})