Skip to content
On this page

组件库文档 tmui.design

骨架屏 Skeleton

骨架加载状态屏,用来展示数据前的一种加载状态。预设了:line ,rect,card,chat四种类型,如果想要更好的自定义请使用tm-skeleton-line组件自行组合。


🌶️ 骨架屏 Skeleton 示例

查看模拟效果
示例模板
vue
<template>
	<tm-app>
		<tm-sheet>
			<tm-text :fontSize="24" _class="text-weight-b" label="基础属性,更多玩法请前往文档。"></tm-text>
			<tm-divider></tm-divider>
			<tm-skeleton></tm-skeleton>
		</tm-sheet>
		<tm-sheet>
			<tm-text :fontSize="24" _class="text-weight-b" label="类型分为:line ,rect,card,chat,"></tm-text>
			<tm-divider></tm-divider>
			<tm-skeleton model="chat"></tm-skeleton>
		</tm-sheet>
		<tm-sheet>
			<tm-text :fontSize="24" _class="text-weight-b" label="也可以自定义骨架布局"></tm-text>
			<tm-divider></tm-divider>
			<tm-skeleton-line :height="50"></tm-skeleton-line>
			<tm-skeleton-line :height="50"></tm-skeleton-line>
			<view style="width: 300rpx">
				<tm-skeleton-line :height="50"></tm-skeleton-line>
			</view>
		</tm-sheet>
	</tm-app>
</template>
<script lang="ts" setup>
import { ref, getCurrentInstance } from 'vue'
import { onShow, onLoad } from '@dcloudio/uni-app'
import tmApp from '@/tmui/components/tm-app/tm-app.vue'
import tmSheet from '@/tmui/components/tm-sheet/tm-sheet.vue'
import tmText from '@/tmui/components/tm-text/tm-text.vue'
import tmSkeleton from '@/tmui/components/tm-skeleton/tm-skeleton.vue'
import tmDivider from '@/tmui/components/tm-divider/tm-divider.vue'
import tmSkeletonLine from '@/tmui/components/tm-skeleton-line/tm-skeleton-line.vue'
const { proxy } = getCurrentInstance()
const load = ref(true)
</script>

🌶️ 兼容性

APP-VUEAPP-NVUE小程序WEB/H5VUE3/TS
✔️✔️✔️✔️✔️

🌱 Skeleton参数

本组件含有公共属性 公共属性

参数名类型默认值描述
heightNumber60高度,单位rpx
rowsNumber3行数
modelStringline类型;可选值:line,rect,card,chat

🌹 事件

🌽 slot插槽

🥗 ref方法

自定义骨架屏组件 tm-skeleton-line

本元素组件自由的组合出你想要的任意加载造型,这对自定义骨架形状非常有用。

🌱 Skeleton-Line参数

本组件含有公共属性 公共属性

参数名类型默认值描述
heightNumber60高度,单位rpx
dark[Boolean,String]false
followTheme[Boolean,String]true是否跟随全局主题的变换而变换
followDark[Boolean,String]true是否跟随主题全局切换暗黑模式
roundNumber3圆角0-25

🌹 事件

🌽 slot插槽

🥗 ref方法

💏 文档贡献

此页文档由ygy贡献(git,github),如果对该框架感兴趣的可以参与我们一同进步!