Files
pc-10588/app/app.vue
2026-03-05 13:32:48 +08:00

17 lines
307 B
Vue

<template>
<a-config-provider :theme="theme">
<NuxtLayout>
<NuxtRouteAnnouncer />
<NuxtPage />
</NuxtLayout>
</a-config-provider>
</template>
<script setup lang="ts">
const theme = {
token: {
// Ant Design Vue primary color -> green
colorPrimary: '#16a34a'
}
}
</script>