mirror of
https://github.com/andatoshiki/toshiki-notebook.git
synced 2026-06-05 22:46:32 +00:00
14 lines
250 B
Vue
14 lines
250 B
Vue
<script setup lang="ts">
|
|
import confetti from 'canvas-confetti'
|
|
import { inBrowser } from 'vitepress'
|
|
|
|
if (inBrowser) {
|
|
/* confetti */
|
|
confetti({
|
|
particleCount: 100,
|
|
spread: 170,
|
|
origin: { y: 0.6 },
|
|
})
|
|
}
|
|
</script>
|