← Back

vue/html-indent warning

Enforce 4 space continuous indentation

Examples

❌  Incorrect

<template>
    <div>
        <my-component
            :foo="bar"
            :abc="xyz">
    </my-component>
</div>
</template>

✅  Correct

<template>
    <div>
        <my-component
            :foo="bar"
            :abc="xyz"
        >
        </my-component>
    </div>
</template>