Trying to use components inside the md-collapsible component, I've realized with the <p> tag you couldn't use <div> tag in the collapsible body because <p> doesn't admit <div> tag inside.
In order to allow this, we can change the <p> tag with a <div> tag.
What do you think about this solution?
<div> {{yield}} </div>
Shall I create a PR with the code?
<div class="collapsible-body">
<p>{{yield}}</p>
</div>
Trying to use components inside the md-collapsible component, I've realized with the
<p>tag you couldn't use<div>tag in the collapsible body because<p>doesn't admit<div>tag inside.In order to allow this, we can change the
<p>tag with a<div>tag.What do you think about this solution?
<div> {{yield}} </div>Shall I create a PR with the code?