1
Is there any way to render only the content of the component, hiding the tags?
How it works:
<ul>
<li-component> </li-component>
</ul>
Renderiza:
<ul>
<li-component>
<li>
Frase
</li>
</li-component>
</ul>
He keeps the tag <li-component>
Desired result:
<ul>
<li>
Frase
</li>
</ul>
Might explain why you want this?
– Marconi