Week Column Number
In the DateRangePicker, you can render a column which displays the number of the weeks within the current month
view.
The following example demonstrates how to enable the week-number column in the DateRangePicker.
<div id="vueapp" class="vue-app">
<kendo-daterangepicker :week-number="true">
</kendo-daterangepicker>
</div>
Vue.use(DateinputsInstaller);
new Vue({
el: '#vueapp'
})