0 votes
in VueJS by

How to create a custom filter in Vue.js?

1 Answer

0 votes
by

Vue.filter() method is used to create and register a custom filter in Vue js. Vue.filter() method takes two parameters a filterId that is usnique name to filter that you going to create and a filter function that takes a value as the argument and returns the transformed value.

Vue.filter('reverse', function (value) {

  return value.split('').reverse().join('')

})

...