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 to do it...

Let's suppose you have to set up a Martian printing shop with three different printers:

  • Monochrome printer
  • Plasma Color printer
  • 3D DNA Clone printer

The confirmation page will basically be just a form:

<div id="app">   <form>     <!-- list of printers go here -->   </form> </div>

Instead of name, we will use v-model to bind our model to the view:

<label>   <input type="checkbox" v-model="outputPrinter" value="monochrome"/>   Monochrome </label>

Every <input> checkbox with the same v-model will participate in a reactive array that will be updated in real time. Let's declare this array in the Vue instance:

new Vue({     el:'#app',   data:{     outputPrinter: []   } })

This is just a regular array. All the selected printers will be ...

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