vue簡単ショッピングカートの実例を実現します。
本論文の例では、Vueが簡単なカートを実現するための具体的なコードを共有しています。
コード:
以上が本文の全部です。皆さんの勉強に役に立つように、私たちを応援してください。
コード:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<div id="app">
<table>
<thead>
<tr>
<th></th>
<th> </th>
<th> </th>
<th> </th>
<th> </th>
<th> </th>
</tr>
</thead>
<tbody>
<tr v-for='(item,index) in books' ::key="item">
<td>{{item.id}}</td>
<td>{{item.name}}</td>
<td>{{item.date}}</td>
<td>{{item.price*item.count | getFinalPrice}}</td>
<td>
<button @click='reduce(index)' :disabled='item.count <= 1'>-</button>
{{item.count}}
<button @click='add(index)'>+</button>
</td>
<td>
<button @click='removeBtn(index)'> </button>
</td>
</tr>
</tbody>
</table>
<h2 v-if='books!=""'> :{{theSumOf | getFinalPrice}}</h2>
<h2 v-else> </h2>
</div>
</body>
<script src="../js/vue.min.js"></script>
<script>
var app = new Vue({
el: '#app',
data: {
books: [
{
id: 1,
name: ' ',
date: '2006-9',
price: 85.00,
count: 1
},
{
id: 2,
name: 'java ',
date: '2006-9',
price: 10.00,
count: 1
},
{
id: 3,
name: ' ',
date: '2006-9',
price: 85.00,
count: 1
},
{
id: 4,
name: 'ui ',
date: '2006-9',
price: 85.00,
count: 1
},
],
addAnd:0
},
methods: {
add(index) {
this.books[index].count++
},
reduce(index) {
this.books[index].count--
},
removeBtn(index) {
this.books.splice(index, 1)
}
},
components: {
},
computed: {
theSumOf: function () {
//
//let sum = 0
//this.books.forEach(item => {
// sum += parseInt(item.price)*parseInt(item.count)
});
//return sum
//
//let sum = 0
//for(let i in this.books){
//sum += this.books[i].price*this.books[i]*count
}
//return sum
//
//let sum = 0
//for(let item of this.books){
//sum += item.price*item.count
//}
//return sum
//
return this.books.reduce(function(preValue,book){
return preValue + book.price*book.count
},0)
}
},
filters: {
getFinalPrice(price) {
return '¥' + price.toFixed(2)
},
}
});
</script>
<html>
vue.jsの学習教程については、テーマvue.jsコンポーネント学習教程、Vue.jsフロントエンドコンポーネント学習教程をクリックして学習してください。以上が本文の全部です。皆さんの勉強に役に立つように、私たちを応援してください。