Seeking assistance with why the angular-material date-picker is not functioning. The code in my cshtml file looks like this:
<label>Date and time</label>
<md-content>
<md-datepicker ng-model="viewModel.employee.contractExpireDate" md-placeholder="Enter date">
</md-datepicker>
</md-content>
I have the following dependencies included:
var companyApp = angular.module('company', ['ui.router', 'ngResource','ngAria','ngAnimate', 'ngMaterial']);
Is there anything else I need to add or any additional package I should install apart from angular-material?