Add count to prop editor

This commit is contained in:
Adam Goldsmith 2019-01-11 09:34:48 -05:00
parent 44b94aa219
commit 57f6b355cf
1 changed files with 2 additions and 1 deletions

View File

@ -45,7 +45,8 @@
data() {
return {
props: propTypes[this.type],
props: {count: 'number',
...propTypes[this.type]},
}
},