I am using a custom comparison function for a wrapper grid column as follows:
<kendo-grid-column :field="'OrderID'" :sortable="{ compare: myComparisonFunction }"></kendo-grid-column>
This works, but I get the following warning in the console: [Vue warn]: Invalid prop: type check failed for prop "sortable". Expected Boolean, got Object
Here is a full example: https://stackblitz.com/edit/chqmrq?file=src/main.vue
What should I do to get rid of the console warning?