如何将1880年1月更改为2018年8月?
这是我的工作副本https://codepen.io/anon/pen/VBNbWM
<div>Hover on me to open calendar
<md-tooltip ng-init="ShowStartDateCalendar()" ng-show="calendarShow" style="width:700px;height:400px;display:inline-flex;">
<md-calendar ng-init="ShowStartDateCalendar()" id="startCalendar" ng-model="myDate" ng-if="calendarShow">
</md-calendar>
<md-calendar ng-init="ShowStartDateCalendar()" id="endCalendar" ng-model="myDate" ng-if="calendarShow">
</md-calendar>
</md-tooltip>
</div>
这是我的控制器
$scope.calendarShow = true;[![result][1]][1]
$scope.myDate = new Date();