Invalid prop: type check failed for prop "newComments". Expected Object, got Array found in
时间: 2023-08-03 13:14:36 浏览: 184
2020-web前端-vue项目出错-[Vue warn]: Invalid prop: custom validator check failed for prop “index”.
5星 · 资源好评率100%
这个错误是因为你在组件中定义了一个 `newComments` 属性,但是在传递给该组件时,你传递了一个数组而不是一个对象。
在Vue中,每个组件都有一个 props 对象,用于声明该组件可以接收的属性及其类型。因此,你需要检查组件的 props 定义,看看是否将 `newComments` 声明为对象类型,例如:
```javascript
props: {
newComments: {
type: Object,
required: true
}
}
```
然后在传递给组件时,你需要将 `newComments` 作为一个对象传递,例如:
```html
<my-component :new-comments="{ comment: 'This is a new comment' }"></my-component>
```
阅读全文