b8671ce5创建于 2023年1月4日历史提交
<template>
  <d-button
    variant="solid"
    :loading="showLoading"
    @click="handleClick"
  >
    Click Me
  </d-button>
</template>

<script setup lang="ts">
import { ref } from 'vue';
const showLoading = ref(false);
const handleClick = () => {
  showLoading.value = true;

  setTimeout(() => {
    showLoading.value = false;
  }, 2000);
};
</script>