radio button checked true vuejs code example
Example: vue radio button default checked
Apparently, Vue will check input if bound value is the same with input value:
Check out this fiddle: https://jsfiddle.net/v7zj4c13/188/
new Vue({
el: '#demo',
data: {
gender: "female"
}
})
Code above will checked the female input, not the male one