uniapp 微信小程序父传子组件接收不到数据?

父组件

if="show1" :rentlists="rentlists">

js
components: {
            index
        },

return{
 show1:false,
}


created(){
            const db = wx.cloud.database()
            db.collection('myRent').where({
             type: 'info'
            
            }).get({
                success: function(res) {

                    // 输出 [{ "title": "The Catcher in the Rye", ... }]
                    this.rentlists=res.data;
                    // console.log(res.data)              //能打印数据
                    this.show1=true;                      //但此时这里不生效?
                }
            })
        },

子组件

         props:{
                  rentlists:Array,
                  default:"" //参数默认
             },


mounted(){
 console.log(this.rentlists) //undefine?
}

接收不到数据?

请问为什么父传子接收不到数据?父组件能接收到数据库的数据, 但那个v-if却也不生效??
这是父(app.vue)-子(父)(在此请求的数据)->子组件

不知道你这个问题是否已经解决, 如果还没有解决的话:

如果你已经解决了该问题, 非常希望你能够分享一下解决方案, 写成博客, 将相关链接放在评论区, 以帮助更多的人 ^-^