JS.VUE.HTML.END.TAGS

Enforce end tag style

Rule Details

This rule aims to disallow lacking end tags.

{'vue/html-end-tags': ['error']}

Copy
<template>
  <!-- GOOD -->
  <div></div>
  <p></p>
  <p></p>
  <input>
  <br>

  <!-- BAD -->
  <div>
  <p>
</template>

Options

Nothing.

The content on this page is adapted from the ESLint User Guide. Copyright © OpenJS Foundation and other contributors, www.openjsf.org. All rights reserved. https://eslint.org/docs/rules/