mcwl-pc/app/components/GlobalConfig.vue

18 lines
425 B
Vue

<template>
<n-config-provider :theme="theme" :theme-overrides="themeOverrides">
<n-message-provider>
<slot></slot>
</n-message-provider>
</n-config-provider>
</template>
<script setup lang="ts">
import { darkTheme, NConfigProvider, NMessageProvider } from 'naive-ui';
const theme = darkTheme
// 可以根据需要配置主题
const themeOverrides = {
common: {
primaryColor: '#18a058'
}
}
</script>