乐趣区

关于vue.js:Vue自定义组件Props中接收数组

问题

报错

props: {
    showcontent: {
      type: Array,
      default: []},
}

报错信息

问题解决

props: {
    showcontent: {
      type: Array,
      default: function () { return [] }
    },
}

ES6

props: {
    showcontent: {
      type: Array,
      default: () => []
    },
}

Vue 自定义组件 Props 中接管数组

退出移动版