mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-12-24 21:40:22 +08:00
18 lines
384 B
Vue
18 lines
384 B
Vue
<template>
|
|
<div></div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { useLoadingBar, useDialog, useMessage, useNotification } from 'naive-ui';
|
|
|
|
function registerNaiveTool() {
|
|
window.$loadingBar = useLoadingBar();
|
|
window.$dialog = useDialog();
|
|
window.$message = useMessage();
|
|
window.$notification = useNotification();
|
|
}
|
|
|
|
registerNaiveTool();
|
|
</script>
|
|
<style scoped></style>
|