JSFiddle - React, Tailwind, and code Playground
HTML
<section ng-app="example" ng-controller="ExampleController">
<input type="date" ng-model="date"> <!-- gewünschtes Format: dd.MM.yyyy -->
</section>
JavaScript
angular.module('example', [])
.controller('ExampleController', ['$scope', function ($scope) {
$scope.date = new Date(); // days x hours x minutes x seconds x ms
}]);