1.0.1 • Published 4 years ago

simplyfication v1.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
4 years ago

Simplyfication

A simple notification component for Vue.js

Installation

npm install simplyfication

Usage

import simplyfication from 'simplyfication'

Vue.use(simplyfication)

Include the notification component inside of your application (preferrably inside the root)

<div id="vue-app">
  <!-- Code --->

  <simplyfication />
</div>

Call your notification

this.$notify({
  title: 'Whoops',
  message: 'Something went wrong',
  type: 'warning'
})