mirror of
https://github.com/ialley-workshop-open/uni-halo.git
synced 2026-09-12 16:40:40 +08:00
3c84661d0e
1. 新增副文案支持与默认文案优化 2. 重构状态渲染逻辑,统一三态UI结构 3. 添加氛围动效:光晕呼吸、装饰点漂浮、差异化表情动画 4. 调整测试页与首页默认配置,关闭开发模式
14 lines
332 B
Vue
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> |