next/app.vue
☙◦ The Tablet ❀ GamerGirlandCo ◦❧ 4dc6b9c396
refactor: modify top-level app.vue
it no longer has the nuxt welcome screen, and additionally uses my default layout with an antd config
2023-09-25 19:37:33 -04:00

27 lines
628 B
Vue

<script lang="ts" setup>
import { theme } from 'ant-design-vue';
import { IUser } from './models/user';
const {data: user}: any = await useApiFetch("/auth/session")
provide("dark", user?.profile?.nightMode || false)
</script>
<template>
<a-config-provider :theme="{
token: {
colorPrimary: '#ff3c8e',
colorSuccess: '#2be396',
colorWarning: '#face14',
colorInfo: '#17e3ff'
},
algorithm: ((user as IUser)?.profile?.nightMode || false) ? theme.darkAlgorithm : theme.defaultAlgorithm
}">
<NuxtLayout>
<NuxtPage/>
<!-- <NuxtWelcome /> -->
</NuxtLayout>
</a-config-provider>
</template>