1
0
mirror of https://github.com/zclzone/vue-naive-admin.git synced 2025-04-30 14:19:01 +08:00
zhangchuanlong 8d0158be7c first commit
2022-01-08 17:20:46 +08:00

11 lines
221 B
Vue

<script setup>
import { useLoadingBar } from 'naive-ui'
window['$loadingBar'] = useLoadingBar()
Object.defineProperty(window, '$loadingBar', {
configurable: false,
writable: false,
})
</script>
<template></template>