← Back

vue/object-curly-spacing warning

Enforce consistent spacing inside braces

Examples

❌  Incorrect

<template>
    <my-component :options="{name: 'Sam Turrell'}" />
</template>

✅  Correct

<template>
    <my-component :options="{ name: 'Sam Turrell' }" />
</template>