“Ngx toast” Kod odpowiedzi

Ngx toast

npm install ngx-toastr --save
Clumsy Chipmunk

Zainstaluj toast w Angular

npm install ngx-toastr --save
Annoying Antelope

Ngx Toast

npm install @angular/animations --save
Nice Narwhal

Ngx Toast

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 Toast

// 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

Odpowiedzi podobne do “Ngx toast”

Pytania podobne do “Ngx toast”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu