📅  最后修改于: 2023-12-03 15:13:11.288000             🧑  作者: Mango
加入 Angular Material 之后,
要使用
ng add @angular/material
要使用
import { MatButtonModule } from '@angular/material/button';
@NgModule({
...
imports: [
MatButtonModule
],
...
})
export class AppModule { }
在组件的 HTML 模板中,您可以使用
<mat-button>点击我</mat-button>
| 属性 | 描述 | | --- | --- | | color | 按钮的颜色,可以是 primary, accent, warn 或任何常规颜色 | | disabled | 是否禁用按钮 | | href | 链接到的 URL | | routerLink | 导航到的路由链接 |
<mat-button [color]="'primary'" [disabled]="false">主按钮</mat-button>
<mat-button [color]="'accent'" [disabled]="false">强调按钮</mat-button>
<mat-button [color]="'warn'" [disabled]="true">禁用按钮</mat-button>
<mat-button [href]="'/about-us'">链接按钮</mat-button>
<mat-button [routerLink]="'/contact'">路由链接按钮</mat-button>
.my-button {
background-color: red;
color: white;
font-size: 16px;
}
<mat-button class="my-button">自定义按钮</mat-button>
使用