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

vue子传父多个值

时间:2019-04-05 18:25:54      阅读:838      评论:0      收藏:0      [点我收藏+]

标签:com   div   nts   xxx   back   turn   return   scope   dos   

子组件:this.$emit("methdosName",data1,data2,data3)

父组件: <child @methodsName="xxx(arguments)"></child>

 

例子:

子组件:

<template>
<div>
    <button @click="trans()">点击传值</button>
</div>
</template>
<script>
export default {
  name: "Chile",
  data () {
    return {
        data:"123",
        data2:[1,2,3],
        data3:{
            test:"123"
        }
    };
  },
  methods:{
      trans(){
          this.$emit("transdata",this.data,this.data2,this.data3);
      }
  }
}
</script>
<style lang="css" scoped>
</style>

 

父组件:

<template>
<div>
    <child @transdata="getValue(arguments)"></child>
    <span v-for="(item,i) in parentData">{{item}}</span>
</div>
</template>
<script>
import Child from ./Child.vue
export default {
  name: "Parent",
  components:{
Child
  },
  data () {
    return {
        parentData:"父组件"
    };
  },
  methods:{
      getValue(data){
           this.parentData = data;
      }
  }
}
</script>
<style lang="css" scoped>
</style>

 

vue子传父多个值

标签:com   div   nts   xxx   back   turn   return   scope   dos   

原文地址:https://www.cnblogs.com/luguankun/p/10659315.html

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