亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

利用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

汉中市| 徐汇区| 新余市| 肇源县| 崇义县| 双流县| 江津市| 仙桃市| 漳平市| 镇沅| 康保县| 内丘县| 渭南市| 南溪县| 固始县| 吴桥县| 余干县| 平利县| 闵行区| 三穗县| 呼和浩特市| 阿克苏市| 石首市| 新化县| 泊头市| 含山县| 滨州市| 哈密市| 广平县| 平定县| 新河县| 商都县| 武乡县| 墨竹工卡县| 深水埗区| 昂仁县| 德安县| 河间市| 梁河县| 许昌市| 门头沟区|