When i load angular-elements first time everything is working fine all the material drop downs and tooltips working fine. when we close the angular app we are doing below,
below is how it loads:
<div id="angular-app">
<angular-element></angular-element>
</div>
when closing: document.getElementById('angular-app').remove();
This is what we are doing and when launch again we are creating the angular-element again but second time load app is loading but none of the angular material functionalities are working.
Please suggest how to destroy properly and load again.