This commit is contained in:
贾同学
2025-10-16 20:01:57 +08:00
commit 4768ef2d26
79 changed files with 3358 additions and 0 deletions

15
frontend/src/App.vue Normal file
View File

@@ -0,0 +1,15 @@
<template>
<router-view/>
</template>
<script setup lang="ts">
import {onMounted} from 'vue';
onMounted(() => {
const loadingElement = document.getElementById('loadingPage');
if (loadingElement) {
(loadingElement as HTMLElement).remove();
}
});
</script>
<style lang="less"></style>