In order to hide and display some menus without using Javascript at all in AngularJS. I played around with ng-hide and ng-show like below.
<a ng-click="showmenu1=true">Menu 1</a>
<a ng-click="showmenu2=true">Menu 2</a>
<a ng-click="showmenu3=true">Menu 3</a>
<form ng-show="showmenu1">
<label> 1 </label>
</form>
<form ng-show="showmenu2">
<label> 2 </label>
</form>
<form ng-show="showmenu3">
<label> 3 </label>
</form>
http://jsfiddle.net/39Lm68vj/4/
Updated question: how do you make menus 2 and 3 disappear while menu 1 is active?
If you only want to show one of these at a time you would be better off simplifying this down to using only one variable.
then in controller
DEMO