VUE_props默认值为数组或对象时报错Invalid default value for prop “categories“: Props with type Object/Array must

我会带着你远行 2023-01-08 12:23 194阅读 0赞

Invalid default value for prop “categories”: Props with type Object/Array must use a factory function to return the default value.
found in

  • 翻译过来:类型为Object/Array的属性必须使用工厂函数返回默认值

错误写法

  1. props:{
  2. categories: {
  3. type:Array,
  4. default:[1,2]
  5. }
  6. },

正确写法

props默认值是数组或是对象时应该以函数返回

  1. props:{
  2. categories: {
  3. type:Array,
  4. default:function () {
  5. return ['1', '2', '3', '4', '5', '6']
  6. }
  7. },
  8. },

发表评论

表情:
评论列表 (有 0 条评论,194人围观)

还没有评论,来说两句吧...

相关阅读