0👍
Use Strict equality instead of includes().
checkForDuplicateCategory(){
this.newEstimates.map((estimate) => {
return estimate.category?.toLowerCase() === this.bid.category?.toLowerCase()
});
}
- [Vuejs]-Prevent open mobile keyboard automatically when input focused
- [Vuejs]-Common layout page trigger all pages vue 3
Source:stackexchange.com