Skip to Content
Vue.js 2 Cookbook
book

Vue.js 2 Cookbook

by Andrea Passaglia
April 2017
Intermediate to advanced
454 pages
12h 51m
English
Packt Publishing
Content preview from Vue.js 2 Cookbook

How it works...

The nonPhysics computed property will contain a copy of our array with the processing specified inside. It will simply check for experiments with fields that are not Physics and pass the new array to be rendered as a list.

As you can see, the filtering is totally arbitrary. We could take, instead of the word Physics, a word from a variable that in turn is taken from a textbox:

<input v-model="term"> // HTML  // inside the Vue instance data: {   term: '' }, computed: {   allExceptTerm () {     return this.experiments       .filter(exp => exp.field.indexOf(this.term) === -1)   } }
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Learning Vue.js 2

Learning Vue.js 2

Olga Filipova
Pro Vue.js 2

Pro Vue.js 2

Adam Freeman

Publisher Resources

ISBN: 9781786468093Supplemental Content