Allow boolean values in select input

This commit is contained in:
Jonathan Reinink 2019-04-03 16:43:10 -04:00
parent b5f919e88c
commit 0c7a657062
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ export default {
return `select-input-${this._uid}`
},
},
value: [String, Number],
value: [String, Number, Boolean],
label: String,
error: String,
},