Posts by Mariana Dutra • 33 points
2 posts
-
0
votes2
answers611
viewsA: How do I filter a list in Vue with response ignoring accents and uppercase/lowercase?
Thank you so much, it worked for me. It stayed that way: filtered: function () { const search = this.configs.search const users = _.orderBy(this.users, this.configs.orderBy, this.configs.order) if…
-
3
votes2
answers611
viewsQ: How do I filter a list in Vue with response ignoring accents and uppercase/lowercase?
I’m making a list filter by name, it works, but if I have a name registered as Gor, the filter does not work when I type. computed: { filtered: function () { const search = this.configs.search const…