[Vuejs]-Vue Js Filter by Movie or Series Method

0👍

Im not sure exactly what you want to accomplice.

This will give you all series:

computed: {
  Series() {
    return this.Movies.filter((Movies) => Movies.type == "Series")
  }

Leave a comment