Skip to content

Commit

Permalink
Merge pull request #24 from SkwalExe/patch
Browse files Browse the repository at this point in the history
Fix error in documentation home page
  • Loading branch information
SkwalExe authored Jul 23, 2024
2 parents c383572 + a0a23ad commit b613e20
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,14 @@ features:
---

<script setup>
setTimeout(() => {
const wmbEngine = new WinMB('https://cdn.jsdelivr.net/gh/SkwalExe/[email protected]/src/assets/')
import { onMounted } from 'vue'

onMounted(() => {
setTimeout(() => {
wmbEngine.show("Updates are available", "Please reboot your computer to install Windows updates.", "error")
}, 2500)
}, 1000)
const wmbEngine = new WinMB('https://cdn.jsdelivr.net/gh/SkwalExe/[email protected]/src/assets/')
setTimeout(() => {
wmbEngine.show("Updates are available", "Please reboot your computer to install Windows updates.", "error")
}, 2500)
}, 1000)
})
</script>

0 comments on commit b613e20

Please sign in to comment.