JSFiddle - React, Tailwind, and code Playground
by rcuzcano
HTML
<div ng-app="" ng-controller="Ctrl1">
<div ng-show="mostrar">
algo
</div>
<button ng-click="mostrar = !mostrar">
Mostrar
</button>
<div ng-controller="Ctrl2">
{{ a }}
</div>
</div>
JavaScript
function Ctrl1($scope){
$scope.a = "otro1"
}
function Ctrl2($scope){
$scope.b = "otro2"
}