码迷,mamicode.com
首页 > 其他好文 > 详细

组件之间数据共享

时间:2018-11-08 18:14:27      阅读:291      评论:0      收藏:0      [点我收藏+]

标签:ice   span   如何   ati   div   methods   price   ons   rem   

组件之间的数据同步与共享

如何在组件中使用mutations内的方法?

methods: {
     addOne () {
       this.$store.commit(‘increment‘, this.price)
     },
     minusOne () {
       this.$store.commit(‘decrement‘, this.price)
     }
   }

如何在组件中使用actions内的方法?

methods: {
     addOne () {
       this.$store.dispatch(‘increase‘, this.price)
     }
   }

 

组件之间数据共享

标签:ice   span   如何   ati   div   methods   price   ons   rem   

原文地址:https://www.cnblogs.com/NeryXJ/p/9930011.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!