summaryrefslogtreecommitdiff
path: root/src/web/app/desktop/api/notify.ts
blob: 1f89f40ce62a34b524f74f0713312ecc432b0096 (plain)
1
2
3
4
5
6
7
8
9
10
import Notification from '../views/components/ui-notification.vue';

export default function(message) {
	const vm = new Notification({
		propsData: {
			message
		}
	}).$mount();
	document.body.appendChild(vm.$el);
}