How can I render a component inside a template using text interpolation? I tried the following code:
<template>
<div> {{ booleanValue ? "<my-component />" : "Some Text" }} </div>
</template>
But this is printing the actual code with the "double mustaches", removing the component tag and also rendering the component.
{{ booleanValue ? "" : "Some Text" }}