您好,登錄后才能下訂單哦!
這篇文章給大家介紹利用Vue怎么實現一個購物車功能,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
具體方法如下:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <link href="https://cdn.bootcdn.net/ajax/libs/twitter-bootstrap/4.5.0/css/bootstrap.css" rel="stylesheet"> </head> <body> <div id="app"> <div v-if="books.length"> <table class="table table-dark"> <thead> <tr> <th scope="col">ID</th> <th scope="col">書籍名稱</th> <th scope="col">出版日期</th> <th scope="col">書籍價格</th> <th scope="col">購買數量</th> <th scope="col">操作</th> </tr> </thead> <tbody> <tr v-for="(item,index) in books"> <th scope="row">{{item.id}}</th> <td>{{item.name}}</td> <td>{{item.date}}</td> <td>{{item.price | dealPrice}}</td> <td> <button class="btn btn-primary" @click="decrement(index)" :disabled="item.count <= 0">-</button> {{item.count}} <button class="btn btn-primary" @click="increment(index)">+</button> </td> <td> <button class="btn btn-danger" @click="removeBook(index)">移除</button> </td> </tr> </tbody> </table> <h3>總價為 {{totalPrice | dealPrice}}</h3> </div> <h3 v-else>購物車為空</h3> </div> <script src="vue.js"></script> <script> const app = new Vue({ el:'#app', data:{ books:[ { id:1, name:'PHP手冊', date:'2020年5月17號', price:33, count:1 }, { id:2, name:'Python手冊', date:'2020年5月17號', price:33, count:1 }, { id:3, name:'Linux手冊', date:'2020年5月17號', price:33, count:1 }, ], }, computed:{ totalPrice(){ let price = 0; for (let i = 0;i<this.books.length;i++) { price += this.books[i].price * this.books[i].count } return price; } }, methods:{ increment(index){ this.books[index].count ++ }, decrement(index) { this.books[index].count -- }, removeBook(index) { this.books.splice(index,1) } }, filters: { dealPrice(price){ return '$' + price.toFixed(2) } } }) </script> </body> </html>
關于利用Vue怎么實現一個購物車功能就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。