[Vuejs]-I am really confused with the radio input in Vue.js

0👍

Your missing data, try:

new Vue({
  el:'#app',
  data: {
    picked: 'One'
  }
})

Example: http://codepen.io/anon/pen/NpPmgp

0👍

You have to add data as well in the vue instance:

new Vue({
  el:'#app',
  data: {
    picked: 'Two'
  }
})

Check this:

http://codepen.io/anon/pen/XMJQRB

Leave a comment