← Back

vue/mustache-interpolation-spacing warning

Expect 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>