[Vuejs]-Best way to filter and search with vue3&django_rest

0👍

From my point of view is always better to do filtering backend. On backend you can control everything. Doing filtering on frontend on maybe 100000 items is going to be slower than letting django handle that.
Take a look at django-filter which is a good filtering package that goes well with django-rest-framework.

Leave a comment