首页 > Web开发 > 详细

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

时间:2017-06-08 22:06:26      阅读:887      评论:0      收藏:0      [点我收藏+]
  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 实现购物车加减方法

原文:http://www.cnblogs.com/gerry/p/6964802.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!