mirror of
https://github.com/Hopiu/vue-material.git
synced 2026-05-09 16:04:45 +00:00
fix radio parsing md-value wrongly #378
This commit is contained in:
parent
e058aa6400
commit
e36d28e6ad
1 changed files with 1 additions and 1 deletions
|
|
@ -31,7 +31,7 @@
|
|||
computed: {
|
||||
classes() {
|
||||
return {
|
||||
'md-checked': this.value && this.mdValue.toString() === this.value.toString(),
|
||||
'md-checked': typeof this.value !== 'undefined' && this.mdValue.toString() === this.value.toString(),
|
||||
'md-disabled': this.disabled
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue