I\'m new to angular and trying to implement pagination in my app. I am trying to use this material component.
With the code below, I can get length,
length
The issue in the original question is that you are not capturing "page" event, to resolve this you need to add (page)='yourEventHandler($event)' as an attribute in the md-paginator tag.
(page)='yourEventHandler($event)
check a working example here
You can also check the API docs here