You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As it's done in order-in-components rule, it would be nice to have a another one (or improve the existing one?) to force a particular order of each props.
For example, this code part might be OK:
props: {domain: {type: String,required: true,},}
And not this one, because required is placed before type:
props: {domain: {required: true,type: String,},}
What do you think?
The text was updated successfully, but these errors were encountered:
As it's done in
order-in-components
rule, it would be nice to have a another one (or improve the existing one?) to force a particular order of each props.For example, this code part might be OK:
And not this one, because
required
is placed beforetype
:What do you think?
The text was updated successfully, but these errors were encountered: