[Vuejs]-How to show message if category exist in vue js?

0👍

Use Strict equality instead of includes().

checkForDuplicateCategory(){
  this.newEstimates.map((estimate) => {
    return estimate.category?.toLowerCase() === this.bid.category?.toLowerCase()
  });
}

Leave a comment