-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsecond-vue.html
37 lines (36 loc) · 1003 Bytes
/
second-vue.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<div id="app">
<ul>
<li v-for="p in product">
<input type="number" v-model.number="p.quantity">
{{p.name}}
<span v-if="p.quantity === 0">OUT OF STOCK</span>
<button @click="p.quantity += 1">Add</button>
</li>
</ul>
<h3>Total Inventory: {{totalP}}</h3>
</div>
<script src="https://unpkg.com/vue"></script>
<script>
const app = new Vue({
el: '#app',
data: {
product: []
},
computed: {
totalP() {
return this.product.reduce((sum, p) => {
return sum + p.quantity
}, 0)
}
},
created: function() {
fetch('https://api.myjson.com/bins/74l63')
.then(res => {
return res.json()
})
.then(json_data => {
this.product = json_data.products
})
}
})
</script>