vue/max-props
enforce maximum number of props in Vue component
- ❗ This rule has not been released yet.
📖 Rule Details
This rule enforces a maximum number of props in a Vue SFC, in order to aid in maintainability and reduce complexity.
🔧 Options
This rule takes an object, where you can specify the maximum number of props allowed in a Vue SFC. There is one property that can be specified for the object.
maxProps
... Specify the maximum number of props in thescript
block.
{ maxProps: 1 }
{ maxProps: 5 }