Skip to content

vue/no-template-shadow

disallow variable declarations from shadowing variables declared in the outer scope

  • ⚙️ This rule is included in the following preset configs:
    • *.configs["flat/strongly-recommended"]
    • *.configs["flat/vue2-strongly-recommended"]
    • *.configs["flat/recommended"]
    • *.configs["flat/vue2-recommended"]
    • "plugin:vue/strongly-recommended"
    • "plugin:vue/vue2-strongly-recommended"
    • "plugin:vue/recommended"
    • "plugin:vue/vue2-recommended"

no-template-shadow should report variable definitions of v-for directives or scope attributes if they shadow the variables in parent scopes.

📖 Rule Details

This rule aims to eliminate shadowed variable declarations of v-for directives or scope attributes.

Now loading...

🔧 Options

This rule takes one optional object option, with the property "allow".

json
{
  "vue/no-template-shadow": ["error", { "allow": [] }]
}
  • "allow" ([string]) Array of identifier names for which shadowing is allowed.

Examples of correct code for the { "allow": ["i"] } option:

Now loading...

🚀 Version

This rule was introduced in eslint-plugin-vue v5.0.0

🔍 Implementation