fix(reactive-mixins): Add prop type and default value

This commit is contained in:
Jakub Juszczak
2018-03-20 21:08:58 +01:00
parent 413bbdf91a
commit 876252173b

View File

@@ -77,7 +77,9 @@ export const reactiveData = {
export const reactiveProp = {
props: {
chartData: {
required: true
type: Object,
required: true,
default: () => {}
}
},
watch: {