fix: 修改文件建构

This commit is contained in:
奔跑的面条
2022-04-14 10:05:57 +08:00
parent 9e9410533c
commit 3c85322450
76 changed files with 76 additions and 117 deletions
+3
View File
@@ -0,0 +1,3 @@
import GoAppProvider from './index.vue';
export { GoAppProvider };
+28
View File
@@ -0,0 +1,28 @@
<template>
<n-loading-bar-provider>
<n-dialog-provider>
<dialog-content></dialog-content>
<loading-content></loading-content>
<n-notification-provider>
<n-message-provider>
<message-content></message-content>
<slot></slot>
</n-message-provider>
</n-notification-provider>
</n-dialog-provider>
</n-loading-bar-provider>
</template>
<script lang="ts" setup>
import {
NDialogProvider,
NNotificationProvider,
NMessageProvider,
NLoadingBarProvider
} from 'naive-ui'
import { MessageContent } from '@/components/Plugins/MessageContent'
import { DialogContent } from '@/components/Plugins/DialogContent'
import { LoadingContent } from '@/components/Plugins/LoadingContent'
</script>