-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.vue
61 lines (52 loc) · 1.1 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
<template>
<NuxtLayout>
<NuxtPage />
</NuxtLayout>
</template>
<script lang="ts" setup>
import { useRoute } from 'vue-router';
const route = useRoute();
useHead({
titleTemplate() {
return route.path !== '/'
? `${route.path.split('/')[1]} - Team Sac`
: 'Team Sac';
},
});
onMounted(async () => {
const { setToken } = useDirectusAuth();
try {
const { data } = await (
await fetch(`${useDirectusUrl()}auth/refresh/`, {
method: 'POST',
credentials: 'include',
})
).json();
if (data === undefined) return;
setToken(data.access_token, data.refresh_token, data.expires);
} catch (e) {}
});
</script>
<style scoped>
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
@font-face {
font-family: 'Poppins';
src: url('/Poppins/Poppins-Regular.ttf') format('truetype');
}
@font-face {
font-family: 'Poppins ExtraBold';
src: url('/Poppins/Poppins-ExtraBold.ttf') format('truetype');
}
}
@layer base {
* {
@apply font-sans space-x-[0.45px] space-y-0;
}
}
NuxtPage {
@apply h-screen w-screen;
}
</style>