Vue.js question detail
What are inline templates?
If you keep an inline-template on a child component then it will use its inner content as a template instead of
treating as reusable independent content.
<my-component inline-template>
<h1>Inline templates</h1>
</my-component>
Note: Even though this inline-templates gives more flexibility for template authoring, it is recommended to define template using template property or <template> tag inside .vue component.