Found a solution here Ionic Tabs Clear history after naivgation
In the tabs page, add an ionChange attribute like so…
<ion-tabs (ionChange) = "tabChanged($event)">
and in the code-behind, add the following…
tabChanged($ev)
{
switch ($ev.tabTitle) {
case "Tab A":
$ev.setRoot('Tab_A_Page');
break;
case "B":
$ev.setRoot('Tab_B_Page');
break;
....
}
Hope this helps.