You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
868 B
Vue
35 lines
868 B
Vue
2 years ago
|
<script setup lang="ts">
|
||
|
import { defineComponent, h } from 'vue'
|
||
|
import { NDialogProvider, NLoadingBarProvider, NMessageProvider, NNotificationProvider, useDialog, useLoadingBar, useMessage, useNotification } from 'naive-ui'
|
||
|
|
||
|
function registerNaiveTools() {
|
||
|
window.$loadingBar = useLoadingBar()
|
||
|
window.$dialog = useDialog()
|
||
|
window.$message = useMessage()
|
||
|
window.$notification = useNotification()
|
||
|
}
|
||
|
|
||
|
const NaiveProviderContent = defineComponent({
|
||
|
name: 'NaiveProviderContent',
|
||
|
setup() {
|
||
|
registerNaiveTools()
|
||
|
},
|
||
|
render() {
|
||
|
return h('div')
|
||
|
},
|
||
|
})
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<NLoadingBarProvider>
|
||
|
<NDialogProvider>
|
||
|
<NNotificationProvider>
|
||
|
<NMessageProvider>
|
||
|
<slot />
|
||
|
<NaiveProviderContent />
|
||
|
</NMessageProvider>
|
||
|
</NNotificationProvider>
|
||
|
</NDialogProvider>
|
||
|
</NLoadingBarProvider>
|
||
|
</template>
|