📜  <mat-menu>在角材料中

📅  最后修改于: 2021-05-13 18:46:55             🧑  作者: Mango

Angular Material是一个由Angular团队开发的UI组件库,用于为台式机和移动Web应用程序构建设计组件。为了安装它,我们需要在项目中安装angular,一旦安装,您可以输入以下命令并下载。
充当一种下拉菜单或菜单部分,每当用户单击任何按钮时,它都会展开或打开。

安装语法:

ng add @angular/material

方法:

  • 首先,使用上述命令安装角材。
  • 完成安装后,从app.module.ts文件中的’@ angular / material / menu’导入’MatMenuModule’。
  • 除此以外,还从app.module.ts文件中的’@ angular / material / button’导入’MatButtonModule’。
  • 然后使用标记将此菜单标记内的所有项目分组。
  • 标记内,我们需要对要在下拉菜单中显示的每个项目使用标记。
  • 我们具有“ xPosition”和“ yPosition”之类的属性来自定义下拉菜单的打开方向。
  • 完成上述步骤后,即可服务或启动项目。

代码实现:

app.module.ts
import { CommonModule } from '@angular/common'; 
import { NgModule } from '@angular/core'; 
import { FormsModule } from '@angular/forms'; 
import { MatMenuModule, MatButtonModule } from '@angular/material'; 
    
import { AppComponent } from './example.component'; 
    
@NgModule({ 
  declarations: [AppComponent], 
  exports: [AppComponent], 
  imports: [ 
    CommonModule, 
    FormsModule, 
    MatMenuModule,
    MatButtonModule
  
  ], 
}) 
export class AppModule {}


app.component.html

    Click on the below button in-order     to activate mat-menu

                       


app.component.html

    Click on the below button in-order     to activate mat-menu

                       

输出: