“NGX Toastr” Código de respuesta

NGX Toastr

npm install ngx-toastr --save
Clumsy Chipmunk

instalar toastr en angular

npm install ngx-toastr --save
Annoying Antelope

ngx-tastr

npm install @angular/animations --save
Nice Narwhal

ngx-tastr

import { CommonModule } from '@angular/common';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';

import { ToastrModule } from 'ngx-toastr';

@NgModule({
  imports: [
    CommonModule,
    BrowserAnimationsModule, // required animations module
    ToastrModule.forRoot(), // ToastrModule added
  ],
  bootstrap: [App],
  declarations: [App],
})
class MainModule {}
Nice Narwhal

ngx-tastr

// regular style toast
@import '~ngx-toastr/toastr';

// bootstrap style toast
// or import a bootstrap 4 alert styled design (SASS ONLY)
// should be after your bootstrap imports, it uses bs4 variables, mixins, functions
@import '~ngx-toastr/toastr-bs4-alert';

// if you'd like to use it without importing all of bootstrap it requires
@import '~bootstrap/scss/functions';
@import '~bootstrap/scss/variables';
@import '~bootstrap/scss/mixins';
@import '~ngx-toastr/toastr-bs4-alert';
Nice Narwhal

Respuestas similares a “NGX Toastr”

Preguntas similares a “NGX Toastr”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código