vue-flash-message
The component to display single flash message to user. It has styles presets, but can be easily customized by passing style object as argument.
Setup
npm i @smartweb/vue-flash-message
Configuration
You can pass configuration object as second argument
Configuration object
Property | Type | Description | Default |
---|---|---|---|
name | String | It is a name of the component and alias for the EventBus global property. | 'flashMessage' |
tag | String | Custom tag for the component to use in your application. | 'FlashMesage' |
time | Number | Duration (in ms) of the message display (can be customized during message call). | 8000 |
icon | Boolean | If you would like to use icons as default. | true |
Usage
Put the component into your template
Now you can access it by using global EventBus alias (that is "flashMessage" by default) of your Vue instance
Methods
You also can use shorthands without status property.
Data Object
The first argument - is data object.
Property | Type | Description |
---|---|---|
status | String | Status of component. Default presets: 'error', 'warning', 'info', 'success' |
title | String | Title of your message |
message | String | Text of your message |
time | Number | Duration (in ms) of the single message display |
icon | Boolean | If you would like to use icons for this single message |
flashMessageStyle | Object | style Object for flashMessage block |
iconStyle | Object | style Object for icon block. You can pass your own icon as 'backgroundImage' |
contentStyle | Object | Style of content block |
titleStyle | Object | Styles for title |
textStyle | Object | Styles for text |
Example:
Callbacks
As second argument you can pass object with two properties: "mounted" and "destroyed".
Property | Type | Description |
---|---|---|
mounted | Function | Will be invoked, when flashMessage appears |
destroyed | Function | Will be invoked, when flashMessage gone |
Example: