platypush/platypush/backend/http/webapp/src/utils/Notification.vue

22 lines
306 B
Vue

<script>
import { bus } from '@/bus';
export default {
name: "Notification",
methods: {
notify(notification) {
bus.emit('notification-create', notification)
},
error(msg) {
this.notify({
text: msg,
error: true,
})
throw msg
},
}
}
</script>