8 lines
199 B
TypeScript
Raw Normal View History

2021-11-09 08:59:37 +08:00
import { domReady } from './utils'
import { useLoading } from './loading'
2021-09-09 09:37:02 +08:00
const { appendLoading, removeLoading } = useLoading()
window.removeLoading = removeLoading;
2022-03-14 17:22:08 +08:00
domReady().then(appendLoading)