Browse Source

Dialog test suite additions

friend-tech-inspired-pwa-dialog
Jose Olarte III 1 year ago
parent
commit
d3e025c293
  1. 32
      src/views/HomeView.vue

32
src/views/HomeView.vue

@ -105,7 +105,37 @@
"
class="font-bold uppercase bg-slate-600 text-white px-3 py-2 rounded-md mr-2"
>
Notification Permission
Notif ON
</button>
<button
@click="
this.$notify(
{
group: 'modal',
type: 'notification-mute',
},
-1,
)
"
class="font-bold uppercase bg-slate-600 text-white px-3 py-2 rounded-md mr-2"
>
Notif MUTE
</button>
<button
@click="
this.$notify(
{
group: 'modal',
type: 'notification-off',
},
-1,
)
"
class="font-bold uppercase bg-slate-600 text-white px-3 py-2 rounded-md mr-2"
>
Notif OFF
</button>
</div>

Loading…
Cancel
Save