semantic-ui-toastr component for Vue.
$ npm install vue-semantic-ui-toastr --save
// main.js
import Vue from 'vue'
import Toastr from 'vue-semantic-ui-toastr'
Vue.use(Toastr, {
duration: 3000,
container: '.toastr-container',
autoshow: true,
html: false,
position: 'right top'
})
// App.vue
this.$toastr
.h('Header')
.i('Message')