Skip to content

Commit

Permalink
Merge pull request #600 from theiliad/fix-vue-data-type
Browse files Browse the repository at this point in the history
fix vue type check for charting data
  • Loading branch information
theiliad authored May 1, 2020
2 parents f5cf647 + 60ee79e commit e7f898c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vue/src/ccv-base-chart.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default {
};
},
props: {
data: { type: Object, required: true },
data: { type: [Object, Array], required: true },
options: { type: Object, required: true }
},
watch: {
Expand Down

0 comments on commit e7f898c

Please sign in to comment.