mirror of
https://github.com/electron-vite/electron-vite-vue
synced 2025-02-01 04:26:36 +08:00
11 lines
226 B
TypeScript
11 lines
226 B
TypeScript
import { domReady } from './utils'
|
|
import { useLoading } from './loading'
|
|
|
|
const { appendLoading, removeLoading } = useLoading()
|
|
window.removeLoading = removeLoading;
|
|
|
|
;(async () => {
|
|
await domReady()
|
|
|
|
appendLoading()
|
|
})() |