Skip to content

Commit

Permalink
feat(MdCheckbox): add object to possible checkbox value (#1556)
Browse files Browse the repository at this point in the history
* Add object & array to possible checkbox values

* Update MdCheckboxMixin.js
  • Loading branch information
jkosonen authored and marcosmoura committed Feb 28, 2018
1 parent 156506b commit 05821e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/MdCheckbox/MdCheckboxMixin.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ export default {
MdRipple
},
props: {
model: [String, Number, Boolean, Array],
model: [String, Boolean, Object, Number, Array],
value: {
type: [String, Number, Boolean],
type: [String, Boolean, Object, Number],
default: 'on'
},
name: [String, Number],
Expand Down

0 comments on commit 05821e2

Please sign in to comment.