父组件向子组件传递数据

文章讲述了在Vue.js中,通过props实现组件间的逐级数据传递,以及如何使用provide和inject进行依赖注入,以实现更灵活的数据共享。
摘要由CSDN通过智能技术生成

一、使用props逐级透传

祖宗传给父亲,父亲传给儿子,递进传递

祖宗组件  grandfather.vue

<template>
    <div>
        <h3>祖宗</h3>
        <father title="祖宗的财产"></father>
    </div>
</template>

<script>
import father from './father.vue'
export default {
  components: {
     father 
  },

}
</script>

<style>

</style>

父亲组件 father.vue

<template>
    <div>
        <h1>父组件</h1>
        <children :title="title"></children>
    </div>
</template>

<script>
import children from './Children.vue'
export default {
  components: { 
    children 
  },
  props:{
    title:{
        type:String
    }
  }

}
</script>

<style>

</style>

孙子组件 children.vue

<template>
  <div>
    <h1>子组件</h1>
    <p>{{ title }}</p>
  </div>
  
</template>

<script>
export default {
  props:{
    title:{
        type:String
    }
  }
}
</script>

<style>

</style>

二、provide和inject 依赖注入

  • 祖宗是provide,依赖提供者,孙子是inject注入到孙子里

祖宗组件

<template>
    <div>
        <h3>祖宗</h3>
        <father></father>
    </div>
</template>

<script>
import father from './father.vue'
export default {
  components: {
     father 
  },
  provide:{
    message:"爷爷的财产"
  }

}
</script>

<style>

</style>

孙子组件

<template>
  <div>
    <h1>子组件</h1>
    <p>{{ message }}</p>
  </div>
  
</template>

<script>
export default {
   inject:["message"]
}
</script>

<style>

</style>

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值