feat:增加撒花动画

This commit is contained in:
2025-11-27 16:58:46 +08:00
parent e1aae7080e
commit bda2256ea7
7 changed files with 69 additions and 41 deletions

View File

@@ -0,0 +1,14 @@
<template>
</template>
<script setup lang="ts">
import confetti from "canvas-confetti";
/* 纸屑 */
confetti({
particleCount: 100,
spread: 170,
origin: { y: 0.6 },
});
</script>