Use functions to create default array props
This commit is contained in:
parent
334da1196b
commit
87f1442914
@ -13,7 +13,7 @@ export default {
|
||||
props: {
|
||||
requests: {
|
||||
type: Array,
|
||||
default: [],
|
||||
default: () => [],
|
||||
},
|
||||
isExtended: {
|
||||
type: Boolean,
|
||||
@ -21,11 +21,11 @@ export default {
|
||||
},
|
||||
statuses: {
|
||||
type: Array,
|
||||
default: [],
|
||||
default: () => [],
|
||||
},
|
||||
dodComponents: {
|
||||
type: Array,
|
||||
default: [],
|
||||
default: () => [],
|
||||
}
|
||||
},
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user