You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
397 B
TypeScript

import { Spin } from 'ant-design-vue'
import 'ant-design-vue/es/spin/style/index.less'
import type { SpinProps } from 'ant-design-vue'
import type { FunctionalComponent } from 'vue'
const PageLoading: FunctionalComponent<SpinProps> = (props: SpinProps) => (
<div style={{ paddingTop: '100px', textAlign: 'center' }}>
<Spin size="large" {...props} />
</div>
)
export default PageLoading