JSFiddle - React, Tailwind, and code Playground
by blashadow
HTML
<div ng-app>
<div ng-controller='hola'>
{{ nice }}
<div ng-show=" mostrar == true ">hiden div</div>
</div>
</div>
<script>
function hola($scope){
$scope.nice = 'hola mundo';
$scope.mostrar = true;
}
</script>