## AlertPopup The `AlertPopup` is an implementation of the [ember-cli-flash](https://github.com/poteto/ember-cli-flash) `flashMessage`. | Param | Type | Default | Description | | --- | --- | --- | --- | | type | String | | The alert type. This comes from the message-types helper. | | [message] | String | | The alert message. | | close | Func | | The close action which will close the alert. | **Example** ```js // All properties are passed in from the flashMessage service. ``` **See** - [Uses of AlertPopup](https://github.com/hashicorp/vault/search?l=Handlebars&q=AlertPopup) - [AlertPopup Source Code](https://github.com/hashicorp/vault/blob/master/ui/app/components/alert-popup.js) ---