JSFiddle - React, Tailwind, and code Playground

HTML

<body ng-app="myApp">
    <div ng-controller="MyCtrl">
        <input type="date" ng-model="my.date" >  
    </div>
</body>

JavaScript

var myApp = angular.module('myApp',[]);

function MyCtrl($scope, $filter) {
    $scope.my = {};
    $scope.my.date = $filter("date")(Date.now(), 'dd-MM-yyyy');
}