ruoyi-plus-soybean/src/components/common/NaiveProvider/index.vue
2022-02-17 01:01:17 +08:00

18 lines
424 B
Vue

<template>
<n-loading-bar-provider>
<n-dialog-provider>
<n-notification-provider>
<n-message-provider>
<slot></slot>
<naive-provider-content />
</n-message-provider>
</n-notification-provider>
</n-dialog-provider>
</n-loading-bar-provider>
</template>
<script setup lang="ts">
import { NaiveProviderContent } from './components';
</script>
<style scoped></style>