mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-06 03:57:54 +08:00
19 lines
495 B
Vue
19 lines
495 B
Vue
<script setup lang="ts">
|
|
// import { darkTheme } from 'naive-ui';
|
|
import { zhCN, dateZhCN, GlobalThemeOverrides } from 'naive-ui';
|
|
import json from './theme.json';
|
|
|
|
const locale = zhCN;
|
|
const dateLocale = dateZhCN;
|
|
|
|
const themeOverrides: GlobalThemeOverrides = {} || json;
|
|
</script>
|
|
|
|
<template>
|
|
<n-config-provider wh-full :theme="null" :locale="locale" :date-locale="dateLocale" :theme-overrides="themeOverrides">
|
|
<router-view />
|
|
</n-config-provider>
|
|
</template>
|
|
|
|
<style scoped></style>
|