mirror of
https://github.com/Chanzhaoyu/chatgpt-web.git
synced 2025-02-08 22:14:53 +00:00
13 lines
272 B
Vue
13 lines
272 B
Vue
<script setup lang="ts">
|
|
import { NConfigProvider } from 'naive-ui'
|
|
import { NaiveProvider } from '@/components/common'
|
|
</script>
|
|
|
|
<template>
|
|
<NConfigProvider class="h-full">
|
|
<NaiveProvider>
|
|
<RouterView />
|
|
</NaiveProvider>
|
|
</NConfigProvider>
|
|
</template>
|