Whenever I include a <component>
tag in my main application, it always renders on a new line. Is there a way to make it inline? I am trying to achieve something like this:
<p>This is a component :<component></component></p>
<!--worked with other html tags-->
But instead, the result looks like this:
This is a component :
component content
I could add the prefix This is a component :
as a prop in the component so that it displays inline, but that's not always what I want.
I am also curious about where Vue stores the CSS template for components. Thank you, community.