mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-05 19:41:59 +08:00
25 lines
605 B
Vue
25 lines
605 B
Vue
<script setup lang="ts">
|
|
// import { darkTheme } from 'naive-ui';
|
|
import { zhCN, dateZhCN, GlobalThemeOverrides } from 'naive-ui';
|
|
|
|
const locale = zhCN;
|
|
const dateLocale = dateZhCN;
|
|
|
|
const themeOverrides: GlobalThemeOverrides = {
|
|
common: {
|
|
primaryColor: '#316C72FF',
|
|
primaryColorHover: '#316C72E3',
|
|
primaryColorPressed: '#2B4C59FF',
|
|
primaryColorSuppl: '#316C7263',
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<n-config-provider :theme="null" :locale="locale" :date-locale="dateLocale" :theme-overrides="themeOverrides">
|
|
<router-view />
|
|
</n-config-provider>
|
|
</template>
|
|
|
|
<style scoped></style>
|