<mwl-calendar-week-view
[viewDate]="viewDate"
[refresh]="refresh"
(click)="weekDayClick($event)">
</mwl-calendar-week-view>
In the component file
weekDayClick($event){
console.log("I need the clicked date of week view. How can I achieve this");
}
Example:- If I click on 16th May, then I need to trigger an event that gives me 16 May 2018.
Similarly, for 17th May it should be 17 May 2018.
For 18th May, it should be 18 May 2018 and so on.
Any suggestion will be welcome
Thanks for your valuable time!