1.父组件,切记判断是否存在这个值,不然有时候子组件获取不到值(v-if="testdata.length>0") 

<!--顶部-->
<topHead :parent="testdata" v-if="testdata.length>0"></topHead>
data() {
   return {
     testdata:[],
}}
methods: {
  //获取信息
    getBannerList(){
      getHone().then(response => {       
          this.testdata=response.data
     })

2.子组件

props:['parent'],
created() {
  console.log(this.parent)//获取到父组件传过来的值
}

 

Logo

前往低代码交流专区

更多推荐