Skip to content

LoadingPage 加载页

基础用法

  • 在页面信息尚未完全加载时使用,避免出现视觉空白
vue
<template>
	<sn-loading-page :show="true" text="加载中"></sn-loading-page>
</template>

更多演示请下载 demo 查看

属性

参数说明类型默认值可选值
show是否显示加载页Booleanfalsetrue | false
text加载页显示的文本内容String加载中-
imgSrc加载页显示的图片路径String--
bgColor加载页背景颜色String$info-
textColor加载页文本颜色String$infoDark (亮色模式) $dark(暗黑模式)-
textSize加载页文本大小String$4-
iconColor加载页图标颜色(如果显示图标)String$infoDark (亮色模式) $dark(暗黑模式)-
iconSize加载页图标大小(如果显示图标)String$7-
aniTime加载页动画持续时间String$normal-
customImgStyle加载页图片自定义样式UTSJSONObject{width: '70px', height: '70px'}-
customTextStyle加载页文本自定义样式UTSJSONObject{marginTop: '15px'}-

使用 MIT 协议