1
0
mirror of https://github.com/ialley-workshop-open/uni-halo.git synced 2026-09-12 16:40:40 +08:00
Files
uni-halo/src/pages-blog/test/test.vue
T
小莫唐尼 3c84661d0e refactor(uh-data-loading): 重构数据加载组件,新增多状态优化与样式升级
1. 新增副文案支持与默认文案优化
2. 重构状态渲染逻辑,统一三态UI结构
3. 添加氛围动效:光晕呼吸、装饰点漂浮、差异化表情动画
4. 调整测试页与首页默认配置,关闭开发模式
2026-09-04 03:11:54 +08:00

14 lines
332 B
Vue

<script setup lang="ts">
import { DataLoadingStatusEnum } from '@/hooks/useDataLoadingStatus'
definePage({
style: {
navigationBarTitleText: '测试页面',
},
})
</script>
<template>
<view class="w-full h-screen">
<uh-data-loading :loading-status="DataLoadingStatusEnum.Loading"></uh-data-loading>
</view>
</template>