Designed by 77
加载资源 ......
感谢 ♥ 作者
先不感谢了

props with type object/array must use a factory function to return the default value

vue的报错信息已经很清晰了,只要把props中的

props:{
    obj:{
        type: Object,
        default: {}
    },
},

修改为:

props:{
    obj:{
        type: Object,
        default: function() {
            return {}
        }
    },
}

props:{
    obj:{
        type: Object,
        default: () => {
            return {}
        }
    }
}

就可以了。

 

"会让我失望的事,也从来没有辜负过我。"

posted @ 2020-05-12 07:56  yanggb  阅读(424)  评论(0编辑  收藏  举报