vue-flash-message
Simple vue flash alert message component. It is made to display a list of messages and give individual control over each message instance.
Component is based on Vuex-flash code and inspired by old goodies as jGrowl. Currently in active development.
Install
Configuration
You can rename default flash method via options:
Usage
Output flash message pool and configure transitions.
(Optional) Include flash messages basic css.
Emit flash messages from any component with a flash (or custom named) method.
Usage with options
Options
Name | Type | Desciption |
---|---|---|
timeout | Number | Number in milliseconds until message self destruct |
important | Boolean | Defines if message has a close button. If set to true, message can be closed only after timeout or by destroy method |
beforeDestroy | Function | Fires bofore message is destroyed |
Props
Name | Type | Default | Desciption |
---|---|---|---|
transitionName | String | custom-classes-transition | vue transitions name |
outerClass | String | 'flash__wrapper' | outer class name |
API
Flash method returns message object giving you full controll over it's contents, options and lifecycle.
Method | Desciption |
---|---|
destroy | Destroys message |
getStorage | Returns global flash message storage object |
More API methods coming soon :)