跳至内容

vue/this-in-template

禁止在模板中使用 this

  • ⚙️ 此规则包含在所有 "plugin:vue/vue3-recommended"*.configs["flat/recommended"]"plugin:vue/recommended"*.configs["flat/vue2-recommended"] 中。
  • 🔧 命令行上的 --fix 选项可以自动修复此规则报告的一些问题。命令行

📖 规则详细信息

此规则旨在防止在 Vue 模板中使用 this

正在加载...

🔧 选项

json
{
  "vue/this-in-template": ["error", "always" | "never"]
}
  • "always" ... 在从 Vue 访问属性时始终使用 this
  • "never" (默认) ... 在表达式中从不使用 this 关键字。

"always"

正在加载...

🚀 版本

此规则在 eslint-plugin-vue v3.13.0 中引入

🔍 实现