You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
1.8 KiB
66 lines
1.8 KiB
12 months ago
|
<template>
|
||
|
<QuickNav />
|
||
|
|
||
|
<!-- CONTENT -->
|
||
|
<section id="Content" class="p-6 pb-24">
|
||
|
<!-- Breadcrumb -->
|
||
|
<div class="mb-8">
|
||
|
<!-- Back -->
|
||
|
<div class="text-lg text-center font-light relative px-7">
|
||
|
<h1
|
||
|
class="text-lg text-center px-2 py-1 absolute -left-2 -top-1"
|
||
|
@click="$router.back()"
|
||
|
>
|
||
|
<fa icon="chevron-left" class="fa-fw"></fa>
|
||
|
</h1>
|
||
|
</div>
|
||
|
|
||
|
<!-- Heading -->
|
||
|
<h1 id="ViewHeading" class="text-4xl text-center font-light pt-4 mb-8">
|
||
|
Notification Help
|
||
|
</h1>
|
||
|
</div>
|
||
|
|
||
|
<div>
|
||
|
<p>Here are things to try to get notifications working.</p>
|
||
|
|
||
|
<h2 class="text-xl font-semibold">Test</h2>
|
||
|
<p>Somehow call the service-worker self.showNotification</p>
|
||
|
|
||
|
<h2 class="text-xl font-semibold">Check OS-level permissions</h2>
|
||
|
<p>
|
||
|
Walk-throughs & screenshots, maybe for all combinations of OS &
|
||
|
browsers.
|
||
|
</p>
|
||
|
|
||
|
<h2 class="text-xl font-semibold">Check browser-level permissions</h2>
|
||
|
<p>Walk-throughs & screenshots for browser settings</p>
|
||
|
|
||
|
<h2 class="text-xl font-semibold">Explain full reset to start again</h2>
|
||
|
<p>
|
||
|
Walk-throughs for clearing everything & subscribing anew to get a
|
||
|
message
|
||
|
</p>
|
||
|
|
||
|
<h2 class="text-xl font-semibold">Auto-detection</h2>
|
||
|
<p>Show results of auto-detection whether they're turned on</p>
|
||
|
</div>
|
||
|
</section>
|
||
|
</template>
|
||
|
<script lang="ts">
|
||
|
import { Component, Vue } from "vue-facing-decorator";
|
||
|
import QuickNav from "@/components/QuickNav.vue";
|
||
|
|
||
|
interface Notification {
|
||
|
group: string;
|
||
|
type: string;
|
||
|
title: string;
|
||
|
text: string;
|
||
|
}
|
||
|
|
||
|
@Component({ components: { QuickNav } })
|
||
|
export default class Help extends Vue {
|
||
|
$notify!: (notification: Notification, timeout?: number) => void;
|
||
|
}
|
||
|
</script>
|