中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

利用Vue怎么實現一個購物車功能

發布時間:2020-12-14 14:21:31 來源:億速云 閱讀:249 作者:Leah 欄目:開發技術

這篇文章給大家介紹利用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怎么實現一個購物車功能就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

蕉岭县| 长子县| 锡林郭勒盟| 本溪| 辽宁省| 乾安县| 酉阳| 山阳县| 施秉县| 松溪县| 陵川县| 丰顺县| 织金县| 尚义县| 张家口市| 宜阳县| 石河子市| 嵊泗县| 崇仁县| 承德县| 汪清县| 垦利县| 常宁市| 达州市| 紫阳县| 绵阳市| 绥宁县| 浏阳市| 武隆县| 丹江口市| 蒲江县| 时尚| 永宁县| 鲁甸县| 汉寿县| 弋阳县| 中卫市| 安岳县| 西城区| 水城县| 萨嘎县|