初始化

This commit is contained in:
2025-10-16 09:59:34 +08:00
commit dd3936944b
32 changed files with 20220 additions and 0 deletions

31
src/App.vue Normal file
View File

@@ -0,0 +1,31 @@
<template>
<div id="app">
<router-view />
</div>
</template>
<script>
export default {
name: 'App',
mounted() {
// 隐藏加载动画
setTimeout(() => {
const loadingContainer = document.querySelector('.loading-container');
if (loadingContainer) {
loadingContainer.style.opacity = '0';
setTimeout(() => {
loadingContainer.style.display = 'none';
}, 500);
}
}, 1500);
}
}
</script>
<style>
#app {
height: 100vh;
width: 100vw;
overflow: hidden;
}
</style>