2022-09-11 10:34:18 +00:00
|
|
|
<script setup>
|
2022-09-13 08:53:31 +00:00
|
|
|
import { RouterView } from "vue-router";
|
|
|
|
import { Spin } from "ant-design-vue";
|
|
|
|
import { userStore } from "./stores/user";
|
2022-09-11 10:34:18 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2022-09-13 08:53:31 +00:00
|
|
|
<Spin :spinning="userStore().isLoading" tip="数据请求中" size="large">
|
|
|
|
<RouterView />
|
|
|
|
</Spin>
|
2022-09-11 10:34:18 +00:00
|
|
|
</template>
|
|
|
|
|
2022-09-13 08:53:31 +00:00
|
|
|
<style>
|
|
|
|
.ant-spin-nested-loading,
|
|
|
|
.ant-spin-container {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
2022-09-11 10:34:18 +00:00
|
|
|
</style>
|