在 app.component.ts-
`storedPosts : any[] = [];
onPostAdded(post: any) {
this.storedPosts.push(post);`
app.component.html-
`<app-post-list [posts]= "storedPosts"></app-post-list>`
类型 'any[]' 不能分配给类型 'never[]'。 “any”类型不能分配给“never”类型。
尝试将帖子更改为另一个组件中的任何帖子:
`export class PostListComponent{
@Input() posts: any[] = [];
}`
文本未显示在输出页面上,但帖子作为空帖子发布