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 bind a vue object to an HTML element and allow you to do stuff like update text or show an element.

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;
        }
    }
});
  • vue.1600920990.txt.gz
  • Last modified: 2020/09/24 04:16
  • by paul