Web: expose notifs as window-global variable for debugging

This commit is contained in:
Sybren A. Stüvel 2022-05-19 14:07:07 +02:00
parent 034d75a9b8
commit 919e629bd7

View File

@ -21,4 +21,6 @@ app.mount('#app')
// For debugging.
import { useJobs } from '@/stores/jobs';
import { useNotifs } from '@/stores/notifications';
window.jobs = useJobs();
window.notifs = useNotifs();