# vue-instant-notification

> Instant notification based on awesome Vue

Latest version **1.0.1** (published 2016-11-30) · 0 weekly downloads

## Install

```sh
npm install vue-instant-notification
pnpm add vue-instant-notification
yarn add vue-instant-notification
bun add vue-instant-notification
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.1 |
| Published | 2016-11-30 |
| First published | 2016-11-30 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >= 4.0.0 |
| Dependencies | 1 |
| Known vulnerabilities | 0 (+1 in 1 direct dependencies) |
| Install scripts | no |
| Author | Adhe Widianjaya |
| Maintainers | adwidianjaya |

## Links

- npm: https://www.npmjs.com/package/vue-instant-notification
- npm.io page: https://npm.io/package/vue-instant-notification

## Dependencies (1)

- [vue](https://npm.io/package/vue.md) ^2.1.0

## Recent versions

- 1.0.1 (latest) — 2016-11-30
- 1.0.0 — 2016-11-30

## README

# vue-instant-notification

> Instant notification based on awesome Vue

## Installation

``` bash
# yarn
yarn add vue-instant-notification

# npm
npm install --save vue-instant-nofication
```

## Example

#### Markup

``` html
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>vue-instant-notification</title>
  </head>
  <body>
    <div id="app">
      <vue-instant-notification ref="Notification"></vue-instant-notification>
      <button @click="test()">Test</button>
    </div>
    <!-- your scripts -->
  </body>
</html>
```

#### Script

``` javascript
import Vue from 'vue'
import VueInstantNotification from '../'

new Vue({
  el: '#app',
  components: { VueInstantNotification },
  methods: {
    test: function () {
      this.$refs.Notification.success({
        title: 'Test',
        message: 'This is test'
      });
    }
  }
});
```

## Build Setup

``` bash
# install dependencies
npm install

# serve with hot reload at localhost:8080
npm run dev

# build for production with minification
npm run build

# run unit tests
npm run unit

# run e2e tests
npm run e2e

# run all tests
npm test
```

For detailed explanation on how things work, checkout the [guide](http://vuejs-templates.github.io/webpack/) and [docs for vue-loader](http://vuejs.github.io/vue-loader).

---
_Source: https://npm.io/package/vue-instant-notification · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
