Skip to content

20230226: Cómo usar el script de Bootstrap en Angular

ts
//...
declare var bootstrap: any;
//...
ngOnInit() {
	this.myModal = new bootstrap.Modal('#myModal', { });
	//...
}