← Back

vue/html-closing-bracket-newline warning

Require or disallow a line break before tag's closing brackets

Examples

❌  Incorrect

<template>
    <div>
        <div id="foo" class="bar"
        >Content</div>
        <div
            id="foo"
            class="bar">
            Content
        </div>
    </div>
</template>

✅  Correct

<template>
    <div>
        <div id="foo" class="bar">Content</div>
        <div
            id="foo"
            class="bar"
        >
            Content
        </div>
    </div>
</template>