1.6.6 • Published 2 years ago
@gianrase/vue3-notifications v1.6.6
Vue3 Notifications
Setup
npm install --save @gianrase/vue3-notifications
yarn add @gianrase/vue3-notifications
Add the vue3-notifications dependencies to your primary.js
:
import { createApp } from 'vue';
import AppNotifications from '@gianrase/vue3-notifications';
import '@gianrase/vue3-notifications/style.css';
const app = createApp({...});
app.use(AppNotifications, { colors: { ... } });
Color name | Default |
---|---|
primary | #000000 |
primaryDark | rgba(255, 255, 255, 0.9) |
bgPrimary | #D3D3D3 |
bgPrimaryDark | #373737 |
bgHover | #C3C3C3 |
bgHoverDark | #343434 |
notificationShadow | #0000004d |
notificationShadowDark | #a0a0a01a |
btnCross | #000000 |
btnCrossDark | rgba(255, 255, 255, 0.9) |
btnRemoveAll | #0644B7 |
btnRemoveAllDark | #0052EA |
borderLeftInfo | #01579b |
borderLeftInfoDark | #252cf4 |
borderLeftSuccess | #1b5e20 |
borderLeftSuccessDark | #1cd509 |
borderLeftWarning | #e65100 |
borderLeftWarningDark | #e88400 |
borderLeftError | #c62828 |
borderLeftErrorDark | #f42525 |
Add the global component to your App.vue
:
<AppNotifications removeAllMessage="Remove all" :isLightMode="true" />
Name | Type | Default | Description |
---|---|---|---|
removeAllMessage | string / (() => string) | 'Remove all' | The message that the 'Remove All Notifications' button will display |
isLightMode | boolean / (() => boolean) | true | Choose between light and dark mode |
Usage
Trigger notifications from any file:
import { addNotification } from '@gianrase/vue3-notifications';
addNotification(message, type, timeout);
Name | Type | Default | Description |
---|---|---|---|
message | string / (() => string) | none | The message of the notification |
type | 'info' / 'success' / 'warning' / 'error' | 'info' | 'info' = blue notification / 'success' = green notification / 'warning' = yellow notification / 'error' = red notification |
timeout | number | 15000 | The amount of time the notification will be displayed on the screen in milliseconds |
1.6.6
2 years ago
1.6.5
2 years ago
1.6.4
2 years ago
1.6.2
2 years ago
1.6.1
2 years ago
1.5.7
2 years ago
1.5.6
2 years ago
1.5.5
2 years ago
1.5.4
2 years ago
1.5.3
2 years ago
1.5.2
2 years ago
1.5.1
2 years ago
1.4.1
2 years ago
1.3.10
2 years ago
1.3.9
2 years ago
1.3.8
2 years ago
1.3.7
2 years ago
1.3.6
2 years ago
1.3.5
2 years ago
1.3.4
2 years ago
1.3.3
2 years ago
1.3.2
2 years ago
1.3.1
2 years ago
1.2.4
2 years ago
1.2.3
2 years ago
1.2.2
2 years ago
1.2.1
2 years ago
1.1.3
2 years ago
1.1.2
2 years ago
1.1.1
2 years ago
1.0.20
2 years ago
1.0.19
2 years ago
1.0.18
2 years ago
1.0.17
2 years ago
1.0.16
2 years ago
1.0.15
2 years ago
1.0.14
2 years ago
1.0.13
2 years ago
1.0.12
2 years ago
1.0.11
2 years ago
1.0.10
2 years ago
1.0.9
2 years ago
1.0.8
2 years ago
1.0.7
2 years ago
1.0.6
2 years ago
1.0.5
2 years ago
1.0.4
2 years ago
1.0.3
2 years ago
1.0.2
2 years ago
1.0.1
2 years ago
1.0.0
2 years ago