Is it possible to assign a default value to a prop using a validator? For instance, if the current prop does not pass the validator and is less than 3, I would like to automatically set the value to 1. Here's an example:
currentStep: {
type : Number,
required : true,
validator : (value) => {
return value <= 3;
},
default : 1
}