forked from 7836246/Nuxt-Whois
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.vue
44 lines (39 loc) · 880 Bytes
/
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
<template>
<n-config-provider>
<n-modal-provider>
<n-message-provider>
<NuxtLayout>
<NuxtLoadingIndicator/>
<NuxtPage/>
<!-- <CommonLayoutSetting v-if="isAdminRoute" class="fixed right-12 top-1/2 z-999" />-->
</NuxtLayout>
</n-message-provider>
</n-modal-provider>
</n-config-provider>
</template>
<script setup lang="ts">
const whoisStore = useWhoisStore()
const dnsStore = useDnsStore()
const domainStore = useDomainStore()
whoisStore.newWhoisList()
dnsStore.newDnsList()
domainStore.newDomainList()
</script>
<style>
body {
background-color: #fff;
color: rgba(0, 0, 0, 0.8);
}
.dark-mode body {
background-color: #091a28;
color: #18181c;
}
.sepia-mode body {
background-color: #f1e7d0;
color: #433422;
}
.light-mode body {
background-color: #F1F3F4;
color: #433422;
}
</style>