JSFiddle - React, Tailwind, and code Playground
by blashadow
HTML
<div ng-app>
<div ng-controller='indexControler'>
Mi nombre es {{ nombre }}
</br>
<input ng-model='nombre'/>
</div>
<div>Fuera del scope {{nombre}}</div>
<div>
<script>
function indexControler($scope){
$scope.nombre = "Blashadow";
}
</script>