“ngx toastr” Ответ

ngx toastr

npm install ngx-toastr --save
Clumsy Chipmunk

установить Toastr в угловой

npm install ngx-toastr --save
Annoying Antelope

ngx-tostr

npm install @angular/animations --save
Nice Narwhal

ngx-tostr

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

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

Ответы похожие на “ngx toastr”

Вопросы похожие на “ngx toastr”

Смотреть популярные ответы по языку

Смотреть другие языки программирования