首页 > 其他 > 详细

Vue 子组件向父组件传参

时间:2016-11-25 17:38:38      阅读:516      评论:0      收藏:0      [点我收藏+]

直接上代码

  

<body>
    <div id="counter-event-example">
      <p>{{ total }}</p>
      <button-counter v-on:increment="incrementTotal"></button-counter>
      <button-counter v-on:increment="incrementTotal"></button-counter>
    </div>

    <script>
        Vue.component(button-counter, {
          template: <button v-on:click="increment">{{ counter }}</button>,
          data: function () {
            return {
              counter: 0
            }
          },
          methods: {
            increment: function () {
              this.counter += 1
              this.$emit(increment, cc )
            }
          },
        })
        new Vue({
          el: #counter-event-example,
          data: {
            total: arg
          },
          methods: {
            incrementTotal: function (b) {
              this.total  = b + 1;
            }
          }
        })
    </script>
</body>

  子组件通过$emit触发父组件的事件,$emit后面的参数是向父组件传参,注意,父组件的事件处理函数直接写函数名即可,不要加(),参数直接传递到了父组件的methods的事件处理函数了。

Vue 子组件向父组件传参

原文:http://www.cnblogs.com/zhansu/p/6102008.html

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