-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.vue
64 lines (56 loc) · 1.29 KB
/
app.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<template>
<div ref="rootRef" style="visibility: hidden">
<NuxtLayout>
<ul ref="skipLinks" class="skip-links">
<li>
<a href="#nav">Skip to navigation</a>
<a href="#main">Skip to main content</a>
</li>
</ul>
<NuxtPage />
</NuxtLayout>
</div>
</template>
<script lang="ts" setup>
import { ref, watch } from 'vue'
import { useRoute } from 'vue-router'
// Load fonts.
const rootRef = ref<HTMLElement>()
onMounted(async () => {
try {
const fonts = await Promise.all(
[
new FontFace('Teko', 'url(/fonts/teko.woff2)'),
new FontFace('Roboto Flex', 'url(/fonts/roboto-flex.woff2)'),
].map((font) => font.load()),
)
fonts.forEach((font) => {
document.fonts.add(font)
})
} catch (error) {
console.error(error)
throw showError(`Could not load fonts`)
}
if (!rootRef.value) throw showError('Root element was not available')
rootRef.value.removeAttribute('style')
})
// Configure skip links.
const route = useRoute()
const skipLinks = ref()
onMounted(() => {
skipLinks.value.firstChild.focus()
})
watch(
() => route.path,
() => {
skipLinks.value.firstChild.focus()
},
)
</script>
<style scoped>
.skip-links {
position: fixed;
opacity: 0;
pointer-events: none;
}
</style>