1.0.1 • Published 4 years ago
@nosth/notify v1.0.1
Notify
Notify is a minimal notification plugin for vue built using vuetify snackbars.
Setup
npm install --save @nosth/notifyimport the plugin in your main.js:
import Vue from 'vue'
import Notify from '@nosth/notify'
Vue.use(Notify)Add the global component to your app.vue or default layout :
<Toast/>Call the $notify method in your .vue files to trigger a normal notification, $warn for a warning notification and $error for erros:
//normal notification
this.$notify({message : 'Saul goodman !'})
//warning
this.$warn({message : 'Tread lightly!'})
//error
this.$error({message : 'Oh no !'})Other optional parameters for the source of the notification are availible :
//bottom center (default)
this.$notify({message : 'Hello world'})
//bottom left
this.$notify({message : 'Hello world', left : true})
//bottom right
this.$notify({message : 'Hello world', right : true})
//top center
this.$notify({message : 'Hello world', top : true})
//top left
this.$notify({message : 'Hello world', top : true, left : true})
//top right
this.$notify({message : 'Hello world', top : true, right : true})