Caso você queira, pode utilizar o ng-switch, que no seu cenário é mais recomendável.
<div ng-switch="myVar">
<div ng-switch-when="dogs">
<h1>Dogs</h1>
<p>Welcome to a world of dogs.</p>
</div>
<div ng-switch-when="cars">
<h1>Cars</h1>
<p>Read about cars.</p>
</div>
<div ng-switch-default>
<h1>Switch</h1>
<p>Select topic from the dropdown, to switch the content of this DIV.</p>
</div>
</div>
Caso você não tenha declarado no seu $scope a var1 ela é considerada undefined, logo as duas condicionais são falsas, não demostrando nenhum html