LoadingPage 加载页
用于页面加载中时,显示一个加载页。
平台
App | 小程序 | H5 |
---|---|---|
√ | √ | √ |
属性
属性名 | 类型 | 默认值 | 说明 | 平台 |
---|---|---|---|---|
show | Boolean | false | 显示 | All |
bgColor | String | rgba(255,255,255,.7) | 背景色 | All |
abs | Boolean | false | 是否绝对定位,默认fixed | All |
text | String,Number | 加载中... | Loading文本 | All |
color | String | c-t-main | Loading文本颜色 | All |
loadingProps | Object | {} | loading配置 参考c-load-more的props | All |
cClass | String,Array,Object | null | 组件类 | All |
cStyle | String,Array,Object | null | 组件样式 | All |
margin | String,Number,Array | null | 外边距 | All |
padding | String,Number,Array | null | 内边距 | All |
bgColor | String | null | 背景色,支持c-bg- 开头的背景色类 | All |
示例
vue
<template>
<c-loading-page :show="showLoading" />
</template>
<script setup>
import { ref } from 'vue'
const showLoading = ref(false);
</script>
1
2
3
4
5
6
7
8
2
3
4
5
6
7
8