[Vuejs]-Emit filtered rows count in ag grid vue

1👍

You can write your computed property like this

computed: {
    count() {
      if (this.gridApi) {
        return this.gridApi.getDisplayedRowCount();
      } else {
        return this.newRowData.length;
      }
    }
  },

Leave a comment