JSFiddle - React, Tailwind, and code Playground
by Michele Marcucci
HTML
<div ng-app="myApp" ng-controller="myCtrl">
<input type="email" id="email" name="email" ng-model="costumer.email" />
<p>Bind: {{costumer.email}}</p>
</div>
JavaScript
angular.module('myApp', [])
.controller('myCtrl', function ($scope) {
$scope.costumer = {};
})
.filter('displayPrice', function () {
return function (formats, single, withoutcurrency, currency, format, country) {
console.log(country);
return country;
}
});