vue/valid-define-props 
enforce valid
definePropscompiler macro
- ⚙️ This rule is included in all of 
"plugin:vue/vue3-essential",*.configs["flat/essential"],"plugin:vue/essential",*.configs["flat/vue2-essential"],"plugin:vue/vue3-strongly-recommended",*.configs["flat/strongly-recommended"],"plugin:vue/strongly-recommended",*.configs["flat/vue2-strongly-recommended"],"plugin:vue/vue3-recommended",*.configs["flat/recommended"],"plugin:vue/recommended"and*.configs["flat/vue2-recommended"]. 
This rule checks whether defineProps compiler macro is valid.
📖 Rule Details 
This rule reports defineProps compiler macros in the following cases:
definePropsis referencing locally declared variables.definePropshas both a literal type and an argument. e.g.defineProps<{/*props*/}>({/*props*/})definePropshas been called multiple times.- Props are defined in both 
definePropsandexport default {}. - Props are not defined in either 
definePropsorexport default {}. 
🔧 Options 
Nothing.
👫 Related Rules 
🚀 Version 
This rule was introduced in eslint-plugin-vue v7.13.0