1👍
✅
You should not use self-closing tags for Vue components in DOM templates as HTML only allows self closing for well known types like <input>
and <img>
.
For more details see the documentation:
https://vuejs.org/guide/essentials/component-basics.html#dom-template-parsing-caveats
Source:stackexchange.com