Skip to content

Commit a0a23ad

Browse files
author
SkwalExe
committed
Fix error in documentation home page
1 parent c383572 commit a0a23ad

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

docs/src/index.md

+9-5
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,14 @@ features:
3131
---
3232

3333
<script setup>
34-
setTimeout(() => {
35-
const wmbEngine = new WinMB('https://cdn.jsdelivr.net/gh/SkwalExe/[email protected]/src/assets/')
34+
import { onMounted } from 'vue'
35+
36+
onMounted(() => {
3637
setTimeout(() => {
37-
wmbEngine.show("Updates are available", "Please reboot your computer to install Windows updates.", "error")
38-
}, 2500)
39-
}, 1000)
38+
const wmbEngine = new WinMB('https://cdn.jsdelivr.net/gh/SkwalExe/[email protected]/src/assets/')
39+
setTimeout(() => {
40+
wmbEngine.show("Updates are available", "Please reboot your computer to install Windows updates.", "error")
41+
}, 2500)
42+
}, 1000)
43+
})
4044
</script>

0 commit comments

Comments
 (0)