vue/html-end-tags

enforce end tag style

  • ⚙️ This rule is included in "plugin:vue/strongly-recommended" and "plugin:vue/recommended".
  • 🔧 The --fix option on the command line can automatically fix some of the problems reported by this rule.

📖 Rule Details

This rule aims to disallow lacking end tags.

<template> <!-- ✓ GOOD --> <div></div> <p></p> <p></p> <input> <br> <!-- ✗ BAD --> <div> <p> </template>
Now loading...

🔧 Options

Nothing.

🔍 Implementation

Last Updated: 12/3/2018, 12:55:00 PM