I'm trying to implement a Kendo grid for my Vue project and I was trying to show the pagination with items per page option with a custom message like "Rows per page"

we have a pageable option to show the custom message for these labels, but even after adding the custom text, I don't see the change in the UI.
Here is my code :
Am I missing something? Can someone please help?
Thanks.
we have a pageable option to show the custom message for these labels, but even after adding the custom text, I don't see the change in the UI.
Here is my code :
<Grid
:id="tableId"
:data-items="items"
:resizable="resizable"
:columns="displayedColumns"
:pageable="pageable"
>
<Grid>
computed: {
pageable() {
return {
buttonCount: 5,
info: true,
type: 'numeric',
pageSizes: [5, 10, 25, 50],
previousNext: true,
pageSizeValue: this.pageSizeValue,
messages:{
itemsPerPage: 'rows per page',
}
};
},
}
Thanks.