← Back

vue/this-in-template warning

Disallow using "this" in template form

Examples

❌  Incorrect

<template>
    <div>{{ this.foo }}</div>
</template>

✅  Correct

<template>
    <div>{{ foo }}</div>
</template>