直播商城原始碼,vue製作簡易的購物車
直播商城原始碼,vue製作簡易的購物車
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <script src="vue3.0.js"></script> //引入vue.js包 <style> body { width: 600px; } table { border: 1px solid black; } table { width: 100%; } th { height: 50px; } th, td { border-bottom: 1px solid #ddd; text-align: center; } span { float: right; } [v-cloak] { display: none; } </style> </head> <body> <div id="app"> <table> <tr> <th>商品號</th> <th>商品</th> <th>單價</th> <th>數量</th> <th>金額</th> <th>操作</th> </tr> <tr v-for='(book,index) in books' :key="book.id"> <td>{{book.id}}</td> <td>{{book.title}}</td> <td>{{book.price}}</td> <td> <button :disabled="book.count===0" @click="book.count--">-</button> {{book.count}} <button @click="book.count++">+</button> </td> <td>{{itemprice(book.price,book.count)}}</td> <td><button @click="deleteitem(index)">刪除</button></td> </tr> </table> <p>總價:¥{{totalprice}}</p> </div> <script> //vue3.0語法 const vm=Vue.createApp({ data(){ return{ books:[{ id: 1, title: 'Java無難事', price: 188, count: 1 }, { id: 2, title: 'C++深入詳解', price: 168, count: 1 }, { id: 3, title: 'Servlet/JSP深入詳解', price: 139, count: 1 }] } }, methods:{ itemprice(price,count){ return price*count; }, deleteitem(index){ this.books.splice(index,1); } }, computed:{ totalprice(){ let total=0; for(let book of this.books) { total+=book.price*book.count; } return total; } } }).mount("#app"); </script> </body> </html>
以上就是 直播商城原始碼,vue製作簡易的購物車,更多內容歡迎關注之後的文章
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69978258/viewspace-2903826/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- app直播原始碼,vue2 實現簡易購物車APP原始碼Vue
- 直播帶貨原始碼,普通商城購物頁面的製作原始碼
- 直播app原始碼,map實現購物車選擇功能APP原始碼
- Vue實現簡單的購物車功能Vue
- 直播商城APP,直接實現購物車商品數量加減APP
- 商城購物車加減控制元件的簡單封裝控制元件封裝
- 直播網站程式原始碼,採用Redis實現購物車功能網站原始碼Redis
- Android實現商城購物車功能Android
- 直播商城平臺,購物車長按右滑出現刪除按鈕
- vue例項-購物車功能Vue
- Vue實現購物車效果Vue
- jquery簡單購物車功能jQuery
- 使用Vue做一個購物車Vue
- VUE-書籍購物車案例Vue
- 直播商城系統原始碼,js製作倒數計時,天,小時,分,秒原始碼JS
- 直播商城原始碼,vue 自定義指令過濾特殊字元原始碼Vue字元
- 一個簡易停車場地圖製作軟體地圖
- javaweb練手專案jsp+servlet簡易購物車系統JavaWebJSServlet
- vue2.0實現購物車功能Vue
- 直播平臺搭建原始碼,java相簿製作原始碼Java
- JavaScript商城購物車價格自動計算功能JavaScript
- 我的Vue之旅 11 Vuex 實現購物車Vue
- 基於vue全家桶實現的簡易商城Vue
- Vue原始碼分析之實現一個簡易版的VueVue原始碼
- 購物商城專案
- AngularJS 實現簡單購物車AngularJS
- 直播購物軟體開發系統原始碼現成模板開發快捷定製功能原始碼
- 夢幻直播商城軟體原始碼帶貨,移動商城定製開發功能原始碼
- 直播商城原始碼,vue 彈窗 慣性滾動 加速滾動原始碼Vue
- 為了直播流暢,實現直播商城原始碼的轉碼原始碼
- 自學Vue的第06天:實戰之購物車Vue
- 簡易rpm套件的製作(轉)套件
- 購物車模組
- 購物類App原型製作分享-PolyvoreAPP原型
- 直播app系統原始碼,簡單易上手的進度條APP原始碼
- 淘物購物商城——原型設計原型
- ASP.NET購物車的實現及結算處理原始碼ASP.NET原始碼
- 直播 App 原始碼搭建簡易直播平臺及個人開發直播系統的難點APP原始碼