JSFiddle - React, Tailwind, and code Playground

by cheongjin kim

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
    }
  }
})