// Bad
<!-- In single-file components, string templates, and JSX -->
<MyComponent></MyComponent>
<!-- In DOM templates -->
<my-component />
// Good
<!-- In single-file components, string templates, and JSX -->
<MyComponent />
<!-- In DOM templates -->
<my-component></my-component>