@@ -49,6 +49,7 @@ defineExpose({
}
.titleText {
margin-top: 10px;
+ text-align: center;
@keyframes rotate {
from {
@@ -10,7 +10,9 @@
</template>
<script setup>
+const isShow = inject("isShow");
const toRefreshApp = () => {
+ isShow.value = true;
location.reload();
};
</script>