Ejemplo 1: mensaje de brindis angular
import { ToastrService } from 'ngx-toastr';
Ejemplo 2: tostada angular
npm install ngx-toastr --save
Ejemplo 3: mensaje de brindis angular
import { Component, OnInit } from '@angular/core';
import { ToastrService } from 'ngx-toastr';
@Component({
selector: 'app-root',
templateUrl: './root.component.html',
styleUrls: ['./root.component.css']
})
export class RootComponent implements OnInit {
constructor(private toastr: ToastrService) { }
ngOnInit() {
}
showToaster(){
this.toastr.success("Hello, I'm the toastr message.")
}
}
Ejemplo 4: mensaje de brindis angular
npm install ngx-toastr --save
npm install @angular/animations --save
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)