ngx-modal не загружается в Angular 6 - PullRequest
0 голосов
/ 22 ноября 2018

Я пытаюсь использовать ngx-модальный в Angular 6, я установил ngx-модальный и импортировал в App-Module и использовал в других компонентах, но после нажатия кнопки «showModal» фон становится серым, но модальныйне отображаетсяВот код:

<button (click)="firstModal.open()">modal with custom header content and footer</button>
<modal #firstModal>
    <modal-header>
        <h1>I am first modal</h1>
    </modal-header>
    <modal-content>
        This modal has its own header, content and footer.
    </modal-content>
    <modal-footer>
        <button class="btn btn-primary" (click)="firstModal.close()">okay!</button>
    </modal-footer>
</modal>

и после проверки html-страницы загружается только один класс

enter image description here

Спасибо запомощь.

...