Documentation for a newer release is available.
View Latest
Esta página no está disponible actualmente en Español. Si lo necesita, póngase en contacto con el servicio de asistencia de Icon (correo electrónico)
@iconsolutions/htm
Getting Started
To begin using the library simply run npm i @iconsolutions/htm in whatever angular app you need to use the library in.
You will need to add the following to the app routing module:
{
path: 'htm',
loadChildren: () =>
import('@iconsolutions/htm').then((m) => m.HtmModule)
}
You will also need to import the HtmToolsModule in your app.module.ts.
@NgModule({
declarations: [AppComponent],
imports: [
BrowserModule,
BrowserAnimationsModule,
CommonModule,
AppRoutingModule,
HtmToolsModule
]
})