[Vuejs]-How can i do search filter on vue js 2.5.16?

0👍

you cant use the filters in that way, you can use the filter in this way:
in the html : {{ prop | filter}}

in js : this.$options.filters.yourFilter(this.prop);

in html prop : :text=”this.$options.yourFilter(prop);”

Leave a comment