mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
31 lines
466 B
Vue
31 lines
466 B
Vue
<template>
|
|
<div class="page-loading">
|
|
<f-spin size="large" stroke="#5384ff" />
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import { FSpin } from '@fesjs/fes-design';
|
|
|
|
export default {
|
|
components: {
|
|
FSpin
|
|
},
|
|
setup() {
|
|
return {
|
|
};
|
|
}
|
|
};
|
|
</script>
|
|
<style>
|
|
.page-loading{
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
</style>
|