@page @model Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo.Pages.Components.AlertsModel @{ ViewData["Title"] = "Alerts"; }

Alerts

Based on Bootstrap Alert.

# Alert Example

I'm an abp alert!
<abp-alert alert-type="Danger">
     I'm an abp alert!
</abp-alert>

# Dismissible Alert Example

I'm a dismissible abp alert!
<abp-alert alert-type="Warning" dismissible="true">
     I'm a dismissible abp alert!
</abp-alert>

# Alert With Link Example

I'm an abp alert with Link!
<abp-alert alert-type="Info">
      I'm an abp alert with <a abp-alert-link href="#">Link</a>!
</abp-alert>

# Alert With Header Example

Header I'm an abp alert!
<abp-alert alert-type="Primary">
    <abp-alert-header size="h3">Header</abp-alert-header>
    I'm an abp alert!
</abp-alert>