模态自动关闭-角度

时间:2020-04-06 16:01:29

标签: angular

  <div class="row-4">
     <button (click)="open(content)">Open modal</button>
     <ng-template #content>
     <p>HI</p>
     </ng-template>              
     </div>

 open(template: TemplateRef<any>) {
    this.modalRef = this.modalService.show(template, { class: 'modal-sm' });
  }

显示模式1秒钟后,它将我重定向到另一个视图。

0 个答案:

没有答案