1.1.2 • Published 4 years ago

bridge-vue-notification v1.1.2

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

Bridge Vue Notifications

Bridge Notification

Demonstration

https://bridge-notification.netlify.app

Getting started

npm install --save bridge-vue-notification

Basic usage

// main.js:

import Vue from "vue";
Vue.use(require("bridge-vue-notification"));
// In App.vue:

<div id="app">
  <bridge-notify />
...
...
</div>

<script>

export default {
  methods:{
    show(){
      this.$notify({
          message: "Bridge Notification is Awesome 😍",
          duration: 3000,
          position: 'center',
          animate: {
            x: 0,
            y: 330,
          },
        });
    }
  }
}
</script>

<button @click="show">Show Notification</button>
1.1.2

4 years ago

1.1.1

4 years ago

1.1.0

4 years ago

1.0.0

4 years ago