perf: 移除文件

This commit is contained in:
dap 2025-01-19 20:12:13 +08:00
parent 4d4e909652
commit 233817c2ed

View File

@ -1,34 +0,0 @@
import { defineComponent } from 'vue';
import { Page } from '@vben/common-ui';
import { openWindow } from '@vben/utils';
import { Result } from 'ant-design-vue';
export default defineComponent({
name: 'CommonSkeleton',
setup() {
return () => (
<Page autoContentHeight={true}>
<Result
status="success"
sub-title="等待后端发布"
title="已经开发完毕(warmflow分支)"
>
{{
extra: (
<div>
<a-button
onClick={() => openWindow('http://106.55.255.76')}
type="primary"
>
</a-button>
</div>
),
}}
</Result>
</Page>
);
},
});