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

vue父传子

时间:2019-01-24 00:32:10      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:turn   nts   span   code   OLE   creat   ret   col   接收   

父组件传递数据给子组件用props,父组件中使用子组件,子组件用props接收父组件数据。

Home父组件代码:

<template>
<div>
     {{test}}
     <!-- 使用子组件,绑定父组件数据数据 -->
    <Child :test="test"></Child>
</div>
</template>
<script>
// import子组件
import Child from ‘./Child.vue‘
export default {
  name: "Home",
  //components引入子组件
  components:{
      Child
  },
  data () {
    return {
        test:123
    };
  }
}
</script>
<style lang="css" scoped>
</style>

Child子组件代码:

<template>
<div>
    <!-- 使用子组件数据 -->
     {{test}}
</div>
</template>
<script>
export default {
  name: "Child",
//   props使用获取父组件数据
  props:["test"],
  data () {
    return {
        
    };
  },
  created(){
    //   使用子组件数据
      console.log(this.test);
      
  }
}
</script>
<style lang="css" scoped>
</style>

 

vue父传子

标签:turn   nts   span   code   OLE   creat   ret   col   接收   

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

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