Skip to content
本页目录

v-loading 加载

示例

基础用法

vue
<template>
    <a-alert
        v-loading="loading"
        message="Alert message title"
        description="Further details about the context of this alert."></a-alert>
    <a-space class="mt-8-2">
        <a-button @click="handleShow">显示 loading</a-button>
        <a-button @click="handleHide">隐藏 loading</a-button>
    </a-space>
</template>

<script setup>
import { ref } from 'vue'

const loading = ref(false)

function handleShow() {
    loading.value = true
}

function handleHide() {
    loading.value = false
}
</script>

自定义标题

vue
<template>
    <a-alert
        v-loading="loading"
        x-loading-title="自定义标题"
        message="Alert message title"
        description="Further details about the context of this alert."></a-alert>
    <a-space class="mt-8-2">
        <a-button @click="handleShow">显示 loading</a-button>
        <a-button @click="handleHide">隐藏 loading</a-button>
    </a-space>
</template>

<script setup>
import { ref } from 'vue'

const loading = ref(false)

function handleShow() {
    loading.value = true
}

function handleHide() {
    loading.value = false
}
</script>

本文档内容版权为 XYAdmin 作者所有,保留所有权利。