Personal I have a menu and I need to click on a link it appears a content, and when clicking on another link it hides the previous content and displays the new content selected, I am using Angular 1 for particularity of the project .. I have following code but I do not know how to hide one content when another is triggered. Thanks!
<li><span class="glyphicon glyphicon-ok"> </span>
<a ng-click="vm.link1 = true">
Link 1
</a>
</li>
<section id="mainContent" class="col-md-9"
ng-if="vm.link1">
content 1
</section>