Skip to content
Advertisement

how to filter post by title using Vue js 2.x directives instead of vue js 1.x

I am learning to use vue js with wprest api by following watch-learn tutorials on the same topic. the problem is that the vue js version used in the tutorial seems to be v 1.x and i started using vue js 2.x. I was able to figure out the initial stages on how to display all the post using vue js 2.x.. I have an input field using which I search for a specific title it should filter and show the post. The issue is unable to workout exactly how it needs to be computed using vuejs 2.x.. I have included a codepen link containing the json data as well as my working code.

the following is the input field to be used to filter the posts by title

JavaScript

https://codepen.io/dhivyasolomon/pen/LdZKJY

I would appreciate any help in figuring out the next step. thanks.

Advertisement

Answer

You don’t need directives, achieve this using the power of Computed properties

So you will have to itarate over the computed property which filter the posts by the input value and return a new array of posts.

Little example:

JavaScript
JavaScript
User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement