This is an old revision of the document!
Vue
Vue is a javascript framework for creating single page web apps.
I'm learning Vue while also learning javascript.
Directives
Directives bind a vue object to an HTML element and allow you to do stuff like update text or show an element.
Vue Object
In the new Vue object, there seems to be a list of parameters you can pass in.
new Vue({ el: '#app', data:{ price: 100, taxRate: 0.10, }, computed: { tax: function() { return this.price * this.taxRate; } } });