1.0.5 • Published 2 years ago

notification-vue v1.0.5

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

notification-vue

NPM Version

using notification-vue

With the notification-vue package, you can show push notifications in a specific area of ​​the window. There is a time bar on the notification box and a time indicator of when the notification occurred.

Demo

https://notification.sezaialkan.com/

notification-vue setup

npm

npm i notification-vue

Add the notification-vue package in the component you want to use after installation.

import notification from 'notification-vue'

ready to use

<notification :items="push"></notification>
let push = [
    {
        type: "success",
        duration: 6000,
        time: "2023-01-10 17:30:55",
        icon: true,
        title: "New Notification",
        text: "Lorem ipsum, dolor sit amet consectetur adipisicing elit. Veritatis rerum quidem unde reprehenderit iusto dolorum reiciendis quo tenetur magnam! Odio, earum? Quis accusamus magni dolorum officia amet sunt iusto beatae?",
    },
    {
        type: "success",
        duration: 6000,
        time: "2023-01-10 17:30:55",
        icon: true,
        title: "New Notification 2",
        text: "Lorem ipsum, dolor sit amet consectetur adipisicing elit. Veritatis rerum quidem unde reprehenderit iusto dolorum reiciendis quo tenetur magnam! Odio, earum? Quis accusamus magni dolorum officia amet sunt iusto beatae?",
    }
]

You can send your notifications as an array with the items prop su to the notification component.

In addition, with the componente class feature, you can determine the position of your notifications relative to the screen.

Parameters

NameValueDefault Value
typeSpecifies the type of notifications. danger, warning, success, infoinfo
durationdetermines the display time of the notification in milliseconds5000
timeIt takes time for the notification to occur. example: 2023-01-10 17:30:55 when a certain time is entered, it calculates the time according to the current time and informs the user in the notification box0
icondetermines the appearance and appearance of the icon in the notification box. takes the value false and truetrue
titleRepresents the title in the notification boxempty
textRepresents the Descriptive text in the notification boxempty

Position

With the following classes, you can determine its position on the screen with the notification component.

NameValue
p-ltLeft Top
p-ctCenter Top
p-rtRight Top
p-lbLeft Bottom
p-cbCenter Bottom
p-rbRight Bottom
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