Type of the default value for 'data' prop must be a function src\xx\xx\index.vue:45:17 default:[]...

应该将index.vue中的props data

props:{

    data:{

        type:Array,

        default:[]

    }

},

改成

data:{

    type:Array,

    default:(){

        return [];

}

貌似非基本类型,数组,对象那些都最好默认函数再返回空

你可能感兴趣的:(Type of the default value for 'data' prop must be a function src\xx\xx\index.vue:45:17 default:[]...)