- In single-file components, string templates, and JSX
- Should be self closing
- For example ,
- In DOM templates
- Should never be self closing
- For example ,
<template>
<div>
<HelloWorld/>
<share-button></share-button>
</div>
</template>
<template>
<div>
<HelloWorld/>
<share-button></share-button>
</div>
</template>