Skip to content

Latest commit

 

History

History
67 lines (51 loc) · 1.35 KB

this-in-template.md

File metadata and controls

67 lines (51 loc) · 1.35 KB
pageClass sidebarDepth title description
rule-details
0
vue/this-in-template
disallow usage of `this` in template

vue/this-in-template

disallow usage of this in template

  • ⚙️ This rule is included in "plugin:vue/vue3-recommended" and "plugin:vue/recommended".

📖 Rule Details

This rule aims at preventing usage of this in Vue templates.

<template>
  <!-- ✓ GOOD -->
  <a :href="url">
    {{ text }}
  </a>
  
  <!-- ✗ BAD -->
  <a :href="this.url">
    {{ this.text }}
  </a>
</template>

🔧 Options

{
  "vue/this-in-template": ["error", "always" | "never"]
}
  • "always" ... Always use this while accessing properties from Vue.
  • "never" (default) ... Never use this keyword in expressions.

"always"

<template>
  <!-- ✓ GOOD -->
  <a :href="this.url">
    {{ this.text }}
  </a>
  
  <!-- ✗ BAD -->
  <a :href="url">
    {{ text }}
  </a>
</template>

🔍 Implementation