JSFiddle - React, Tailwind, and code Playground
HTML
<div ng-app ng-controller="test">
<div ng-bind="content"></div>
<input type="text" ng-model="content">
<br><br>
<button> Stop Binding On the element below forever </button>
<div>Stop me when your done: {{content}} </div>
</div>
JavaScript
function test( $scope ) {
$scope.content = 'Welcome';
};