vue.js 实现购物车加减方法

Posted 安心牧羊人

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue.js 实现购物车加减方法相关的知识,希望对你有一定的参考价值。

  1. <template>
  2. <div class="coutter-wrapper">
  3. <button type="button" @click="plus">+</button>
  4. <button type="button">{{ result }}</button>
  5. <button type="button" @click="minus">-</button>
  6. </div>
  7. </template>
  8. <script>
  9. export default {
  10. data() {
  11. return {
  12. result: 0,
  13. }
  14. }
  15. methods: {
  16. minus() {
  17. this.result--;
  18. this.$emit(‘input‘, {res: this.result, other: ‘--‘})
  19. },
  20. plus() {
  21. this.result++;
  22. this.$emit(‘input‘, {res: this.result, other: ‘++‘})
  23. }
  24. }
  25. }
  26. </script>
  27. <style lang="stylus" scoped>
  28. button
  29. border 0
  30. outline 0
  31. border-radius 3px
  32. button:nth-child(2)
  33. width 200px
  34. </style>

以上是关于vue.js 实现购物车加减方法的主要内容,如果未能解决你的问题,请参考以下文章

vue.js实现完整购物车实例

jQuery实现购物车数字加减效果

如何用jquery实现购物车加减

jquery实现购物车物品加减 没效果,求解

web框架实现购物车数量加减

vuex实现简单购物车加减数量遇到的问题