vue-notibar
TypeScript icon, indicating that this package has built-in type declarations

0.3.6 • Public • Published

Vue 2 Notibar

AppVeyor Build Status AppVeyor Tests Minimized fiel size Downloads per month Latest version License

Description

Customizable notification bar for Vue 2 applications.

Installation

Using npm

$ npm i vue-notibar

or CDN

<script src="https://unpkg.com/vue@2.5.17/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'
    }
}

Live demo

JSFiddle

Package Sidebar

Install

npm i vue-notibar

Weekly Downloads

20

Version

0.3.6

License

MIT

Unpacked Size

26.3 kB

Total Files

16

Last publish

Collaborators

  • tattdogg