Compare commits

...

4 Commits

Author SHA1 Message Date
Jakub Juszczak
76c3b2346e Merge branch 'develop'
* develop:
  Chore: Update dependencies
2018-03-20 21:36:03 +01:00
Jakub Juszczak
bfa1fb83f9 Revert "wip: Refactor mixin in seperate functions"
This reverts commit 8669452651.
2018-03-20 21:35:54 +01:00
Jakub Juszczak
8669452651 wip: Refactor mixin in seperate functions 2018-03-20 21:24:11 +01:00
Jakub Juszczak
876252173b fix(reactive-mixins): Add prop type and default value 2018-03-20 21:08:58 +01:00

View File

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