Appearance
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 
| Property | Description | Type | Default | 
|---|---|---|---|
| v-loading | 显示或隐藏loading | boolean | false |