17 lines
307 B
Vue
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>
|