91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

正宁县| 来安县| 福贡县| 南华县| 宜川县| 家居| 马公市| 怀安县| 康平县| 新营市| 临汾市| 江川县| 武平县| 科技| 巨野县| 左云县| 平远县| 句容市| 银川市| 南城县| 安西县| 奉贤区| 涟源市| 大同市| 清河县| 新巴尔虎左旗| 乐安县| 都昌县| 仁化县| 中山市| 赤水市| 怀化市| 广水市| 泰顺县| 类乌齐县| 阜康市| 清新县| 湖北省| 额济纳旗| 彰化市| 夏津县|