Vue案例:购物车

本文展示了使用 Vue.js 实现的购物车功能,包括书籍信息的显示、价格计算、数量增减及商品移除。核心代码中涉及 Vue 的数据绑定、计算属性、方法及过滤器,同时还提供了完整的HTML和JavaScript代码示例,帮助读者理解Vue在实际应用中的操作。
摘要由CSDN通过智能技术生成

效果展示:

核心代码如下:

 <div id="app">
    <div v-if="books.length">
      <table>
        <thead>
          <tr>
            <th></th>
            <th>书籍名称</th>
            <th>出版日期</th>
            <th>价格</th>
            <th>购买数量</th>
            <th>操作</th>
          </tr>
        </thead>
        <tbody>
          <tr v-for="(item,index) in books">
            <!-- <td v-for="value in item">{{value}}</td> -->
            <td>{{item.id}}</td>
            <td>{{item.name}}</td>
            <td>{{item.date}}</td>
            <!-- <td>{{getFinalPrice(item.price)}}</td> -->
            <td>{{item.price | showPrice}}</td>
            <td>
              <button @click="decrement(index)" v-bind:disabled= "item.count <= 1">-</button>
              {{item.count}}
              <button @click="increment(index)">+</button>
            </td>
            <td><button @click="removeHandler(index)">移除</button></td>    
          </tr>
        </tbody>
      </table>
      <h2>总价格:{{totalPrice | showPrice}}</h2>
    </div>
    <h2 v-else>购物车已清空!</h2>
  </div>
  <script src="../js/vue.js"></script>
  <script>
  const app = new Vue({
    el:'#app',
    data:{
      isShow:true,
      books:[
        {
          id:1,
          name:'《算法导论》',
          date:'2006-9',
          price:85.00,
          count:1
        },
        {
          id:2,
          name:'《UNIX编程艺术》',
          date:'2006-2',
          price:59.00,
          count:1
        },
        {
          id:3,
          name:'《编程珠玑》',
          date:'2006-9',
          price:39.00,
          count:1
        },
        {
          id:4,
          name:'《代码大全》',
          date:'2008-10',
          price:128.00,
          count:1
        }
      ]
    },
    methods:{
      getFinalPrice(price){
        return '¥' + price.toFixed(2);
      },
      increment(index){
        this.books[index].count++;
      },
      decrement(index){   
        this.books[index].count--;
      },
      removeHandler(index){
        this.books.splice(index,1);
      }
    },
    computed:{
      totalPrice(){
        return this.books.reduce(function(preValue,book){
          return preValue + book.count * book.price
        },0)

      },

    },
    filters:{//过滤器
      showPrice(price){
        return '¥' + price.toFixed(2)
      }  
    }
  })
  </script>

免费下载连接: 购物车案例icon-default.png?t=M3C8https://download.csdn.net/download/A____t/85147759?spm=1001.2014.3001.5503

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值