1👍
✅
You can write your computed property like this
computed: {
count() {
if (this.gridApi) {
return this.gridApi.getDisplayedRowCount();
} else {
return this.newRowData.length;
}
}
},
Source:stackexchange.com