JSFiddle - React, Tailwind, and code Playground
by nicolasmoise
HTML
<body ng-app="myApp">
<div ng-controller="parentCtrl">
{{message}}
<input type="text" ng-model="message">
<div ng-controller="childCtrl">
{{message}}
<input type="text" ng-model="message">
</div>
</div>
</body>
JavaScript
angular.module('myApp', [])
.controller('parentCtrl', ['$scope', function($scope){
$scope.message="Hello";
}])
.controller('childCtrl', ['$scope', function($scope){
}]);