mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
30 lines
470 B
Vue
30 lines
470 B
Vue
<template>
|
|
<div class="page-loading">
|
|
<Spin size="large" />
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import Spin from 'ant-design-vue/lib/spin';
|
|
import 'ant-design-vue/lib/spin/style/css';
|
|
|
|
export default {
|
|
setup() {
|
|
return {
|
|
Spin
|
|
};
|
|
}
|
|
};
|
|
</script>
|
|
<style>
|
|
.page-loading{
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
</style>
|