filterBy
Limited to: directives that expect Array values, e.g. v-for
Arguments: {String | Function} targetStringOrFunction "in" (optional delimiter) {String} [...searchKeys]
Usage: Return a filtered version of the source Array. The first argument can either be a string or a function. When the first argument is a string, it will be used as the target string to search for in each element of the Array: <div v-for="item in items | filterBy 'hello'"> In the above example, only items that