fix radio parsing md-value wrongly #378

This commit is contained in:
Marcos Moura 2017-01-23 23:47:11 -02:00
parent e058aa6400
commit e36d28e6ad

View file

@ -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
};
}