Skip to content

vue/define-props-declaration

enforce declaration style of defineProps

  • 🔧 The --fix option on the command line can automatically fix some of the problems reported by this rule.

📖 Rule Details

This rule enforces defineProps typing style which you should use type-based or runtime declaration.

This rule only works in setup script and lang="ts".

Now loading...

🔧 Options

json
{
  "vue/define-props-declaration": ["error",
    "type-based" | "runtime"
  ]
}
  • type-based (default) enforces type-based declaration
  • runtime enforces runtime declaration

"runtime"

Now loading...

📚 Further Reading

🚀 Version

This rule was introduced in eslint-plugin-vue v9.5.0

🔍 Implementation