Merge branch 'develop' into feature/SSR-131
This commit is contained in:
commit
17a736b542
2 changed files with 10 additions and 3 deletions
|
|
@ -3,9 +3,16 @@ export const inputButtonProps = {
|
|||
type: [String, Number],
|
||||
required: true,
|
||||
},
|
||||
modelValue: {
|
||||
type: [Array, String, Number],
|
||||
modelValue: {
|
||||
required: true,
|
||||
validation: function(prop) {
|
||||
return (
|
||||
prop === null
|
||||
|| Array.isArray(prop)
|
||||
|| typeof prop === 'string'
|
||||
|| (typeof prop === 'number' && !Number.isNaN(prop))
|
||||
)
|
||||
}
|
||||
},
|
||||
isMultiSelect: Boolean,
|
||||
groupName: {
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@
|
|||
name: "year-question",
|
||||
data() {
|
||||
return {
|
||||
years: Array,
|
||||
years: [],
|
||||
};
|
||||
},
|
||||
props: {
|
||||
|
|
|
|||
Loading…
Reference in a new issue