warning
vue/this-in-templateDisallow using "this" in template form
Examples
❌ Incorrect
<template>
<div>{{ this.foo }}</div>
</template>
✅ Correct
<template>
<div>{{ foo }}</div>
</template>
Disallow using "this" in template form
❌ Incorrect
<template>
<div>{{ this.foo }}</div>
</template>
✅ Correct
<template>
<div>{{ foo }}</div>
</template>