严浩
2024-11-14 23:11:09 +08:00
parent 7b28d05d0b
commit a2bd1f22d2
5 changed files with 1798 additions and 3 deletions

View File

@ -1,5 +1,6 @@
<script setup lang="ts">
async function submit() {
async function submit(...args: any[]) {
console.debug('submit',`args :>> `, args);
await new Promise(r => setTimeout(r, 1000))
alert('Submitted! 🎉')
}