📜  将字体真棒添加到角度 - Html 代码示例

📅  最后修改于: 2022-03-11 14:53:21.297000             🧑  作者: Mango

代码示例4
import { BrowserModule } from '@angular/platform-browser';import { NgModule } from '@angular/core'; import { AppComponent } from './app.component';import { FontAwesomeModule } from '@fortawesome/angular-fontawesome'; @NgModule({  imports: [    BrowserModule,    FontAwesomeModule  ],  declarations: [AppComponent],  bootstrap: [AppComponent]})export class AppModule { }