Files
pc-10588/app/app.vue

22 lines
583 B
Vue

<template>
<a-config-provider :theme="theme">
<NuxtLayout>
<NuxtRouteAnnouncer />
<NuxtPage />
</NuxtLayout>
</a-config-provider>
</template>
<script setup lang="ts">
const theme = {
token: {
colorPrimary: '#1E6FB5',
colorInfo: '#1E6FB5',
colorLink: '#1E6FB5',
colorSuccess: '#2BA69A',
colorText: '#333333',
fontFamily:
'"Source Han Sans SC","Noto Sans SC","Microsoft YaHei","PingFang SC",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Apple Color Emoji","Segoe UI Emoji"'
}
}
</script>