File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
packages/pro-layout/src/components/PageContainer Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ import {
11
11
} from 'vue' ;
12
12
/* replace antd ts define */
13
13
import PageHeader , { pageHeaderProps } from 'ant-design-vue/es/page-header' ;
14
- import { Tabs , Affix , Spin } from 'ant-design-vue' ;
14
+ import { Tabs , Affix } from 'ant-design-vue' ;
15
15
import type { TabPaneProps } from './interfaces/TabPane' ;
16
16
import type { TabBarExtraContent /*, TabsProps */ } from './interfaces/Tabs' ;
17
17
import type { AffixProps } from './interfaces/Affix' ;
@@ -22,7 +22,7 @@ import 'ant-design-vue/es/affix/style';
22
22
import 'ant-design-vue/es/page-header/style' ;
23
23
import 'ant-design-vue/es/breadcrumb/style' ;
24
24
import 'ant-design-vue/es/tabs/style' ;
25
- import 'ant-design-vue/es/spin/style ';
25
+ import PageLoading from '../PageLoading ';
26
26
import GridContent from '../GridContent' ;
27
27
import FooterToolbar from '../FooterToolbar' ;
28
28
import { withInstall } from 'ant-design-vue/es/_util/type' ;
@@ -291,7 +291,7 @@ const PageContainer = defineComponent({
291
291
) }
292
292
< GridContent >
293
293
{ loading . value ? (
294
- < Spin />
294
+ < PageLoading />
295
295
) : slots . default ? (
296
296
< div >
297
297
< div class = { `${ prefixedClassName . value } -children-content` } > { slots . default ( ) } </ div >
You can’t perform that action at this time.
0 commit comments