0 votes
in VueJS by

What are inline templates?

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>

Related questions

0 votes
+1 vote
asked Feb 6, 2023 in VueJS by john ganales
0 votes
asked Jul 10, 2023 in Angular by Robindeniel
...