0 votes
in VueJS by
What are inline templates in VueJS?

1 Answer

0 votes
by

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>
   <div>
       <h1>Inline templates</h1>
       <p>Treated as component component owne content</p>
   </div>
</my-component>
...