[Vuejs]-Vue.js conditional rendering in older browsers

2👍

Right the solution is that the context has changed once in the filter function
so I had to cache the this.

var self = this;

Also another solution was to just use the Vue instances property.
vm.term

Leave a comment