mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
12 lines
211 B
Vue
12 lines
211 B
Vue
<script setup lang="ts">
|
|
async function onClick() {
|
|
return new Promise<void>(res => setTimeout(res, 1000))
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<UButton loading-auto @click="onClick">
|
|
Button
|
|
</UButton>
|
|
</template>
|