warning
vue/mustache-interpolation-spacingExpect one space between expression and curly brackets.
Examples
❌ Incorrect
<template>
<div>
<div>{{foo}}</div>
<div>{{ foo }}</div>
</div>
</template>
✅ Correct
<template>
<div>{{ foo }}</div>
</template>