README
Simple notifications for Vue.js
Setup
npm i notifications-vue
Project setup
// Add in main.js file:
import NotificationsVue from 'notifications-vue'
Vue.use(NotificationsVue);
Usage
this.$notifi.new("Some message");
Simple Vue plugin notifications
<script type="module">
import notificationsVue from 'https://cdn.skypack.dev/notifications-vue';
</script>
npm i notifications-vue
// Add in main.js file:
import NotificationsVue from 'notifications-vue'
Vue.use(NotificationsVue);
this.$notifi.new("Some message");