vue的父子通信

痴心易碎 提交于 2019-12-04 08:42:08
**父子通信是通过props**
 
    1.在父组件中挂载的子组件上通过v-bind(简写:),绑定数值
    2.在子组件上个props接收绑定的名字,直接在页面上{{}}就可以啦
 
***父组件***
<template>
    <div class="app">
        <child :hehe="msgFormSon"></child>
    </div>
</template>
<script>
import child from './child.vue'
export default {
    data () {
        return {
            msgFormSon: "this is msg"
        }
    },
}
</script>

 

***子组件***

<template>  
   <div class="app">
      {{hehe}}
   </div>
</template>
<script>
export default {
    props:['hehe'],
    data () {
        return {
        }
    },
}
<script>

 

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!