要在Angular 9中使用Angular Material的mat-card作为父级和子级的图形,你可以按照以下步骤进行操作:
ng add @angular/material
app.module.ts
)中添加以下行:import { MatCardModule } from '@angular/material/card';
@NgModule({
imports: [
// other imports...
MatCardModule
],
// other configurations...
})
export class AppModule { }
Parent Card
This is the content of the parent card.
Child Card
This is the content of the child card.
在这个示例中,我们使用了一个mat-card作为父级卡片,然后再内部使用了另一个mat-card作为子级卡片。
请注意,你可以使用mat-card的各种属性和样式来自定义卡片的外观。你可以在Angular Material的官方文档中找到更多关于mat-card的信息。
希望这个示例可以帮助你在Angular 9中使用mat-card作为父级和子级的图形!