Skip to content
On this page

Loading

数据加载中

Examples

vue
<template>
    <div v-loading="show">{{ !show ? '一拳超人' : '加载中...' }}</div>
    <op-button type="primary" @click="show = !show">切换 Loading</op-button>
</template>

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

const show = ref(true)
</script>

Api

PropertyDescriptionTypeDefault
v-loading显示或隐藏loadingbooleanfalse