admin-vben5/apps/web-antd/src/views/common.tsx

19 lines
426 B
TypeScript
Raw Normal View History

2024-08-07 08:57:56 +08:00
import { defineComponent } from 'vue';
import { Fallback } from '@vben/common-ui';
export default defineComponent({
name: 'CommonSkeleton',
setup() {
return () => (
<div class="flex h-[600px] w-full items-center justify-center">
<Fallback
2024-09-25 15:15:40 +08:00
description="等待后端重构工作流后开发"
2024-08-07 08:57:56 +08:00
status="coming-soon"
2024-09-25 15:15:40 +08:00
title="等待开发"
2024-08-07 08:57:56 +08:00
/>
</div>
);
},
});