[Vuejs]-Vuejs checkbox within a v data table header sorting

0👍

your cb property is not reactive. it is object, so without being reactive, ‘cb’ and ‘cb.length’ or other properties would not be reflected in your code/html. let us go ahead it with ref

...,
cb : ref([]),


Leave a comment