[Vuejs]-Filter records by multiple categories with Vuejs

0👍

Found a solution:

this.selectedCategory.filter((category) => {
    projects = projects.filter((project) => {
        return collect(project.software).contains(
            "id",
            category.id
        );
    });
});

Leave a comment