lfyfly / vue-waterfall-easy

vue瀑布流组件(vue-waterfall-easy 2.x)
https://lfyfly.github.io/vue-waterfall-easy/demo/#/
MIT License
860 stars 350 forks source link

PROP的imgsArr默认值要用函数返回。 #17

Closed cute001 closed 6 years ago

cute001 commented 6 years ago

Invalid default value for prop "imgsArr": Props with type Object/Array must use a factory function to return the default value. 官方文档写的: // 对象或数组且一定会从一个工厂函数返回默认值

imgsArr和loadingDotStyle必须用函数返回。 loadingDotStyle: { type: Object, default: function () { return null; } }, imgsArr: { type: Array, required: true, default: function () { return []; } },

lfyfly commented 6 years ago

你说的是对的,我会改正的。 这里使用了required,默认值也变得没用了 默认值为null的话,这样写应该没啥问题