Skip to content

Loading 加载指示器

WD UI 加载指示器组件。

vue
<template>
  <wd-loading :loading="loading" />
  <wd-button @click="showLoading">显示加载</wd-button>
</template>

<script setup>
import { ref } from 'vue'
const loading = ref(false)

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

API

Props

参数说明类型默认值
loading是否显示加载booleanfalse
text加载文本string
type加载类型stringcircular