I am new in Vuejs & still not pretty clear about vue reactivity system. Here in the following code I am trying to update the initial value of a variable in data property using a method.
<script>
name: "OrderDetails",
data(){
tax:5,
subtotal:0
},
computed:{
calculateSubtotal:()=> {
let subtotal;
-----some code--------
this.subtotal = subtotal;
}
}
</script>
But still the subtotal remains 0. How can I Update the value ? Here is the code snippet https://codesandbox.io/s/affectionate-borg-384rl?file=/src/App.vue
Thanks in advace.
subtotalfrom your method) vuejs.org/v2/guide/computed.htmlarrow functionunder the computed docscalculateSubtotal:()=> {vuejs.org/v2/guide/computed.html