Package Exports
- vue-notibar
- vue-notibar/src/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (vue-notibar) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Vue 2 Notibar
Description
Customizable notification bar for Vue 2 applications.
Installation
Using npm
$ npm i vue-notibar
or CDN
<script src="https://unpkg.com/vue@2.7.16/dist/vue.min.js"></script>
<script src="https://unpkg.com/vue-notibar/dist/vue-notibar.min.js"></script>
Usage
import Vue from 'vue'
import VueNotibar from 'vue-notibar'
Vue.use(VueNotibar)
// or with options
Vue.use(VueNotibar, options)
this.$notibar.add('message')
// or with options
this.$notibar.add('message', options)
Options
{
textColor: String, // default '#FFFFFF'
backgroundColor: String, // default '#323232'
time: Number, // default 5000. Set null to disable timeout
position: String, // default 'center'. Possible values: 'left', 'center', 'right'
dismiss: {
show: Boolean, // default false
color: String, // default '#FFFFFF'
}
}