test: web

This commit is contained in:
tbphp
2025-07-01 22:47:25 +08:00
parent c447e3ad0b
commit dcb862b11a
50 changed files with 5059 additions and 689 deletions

View File

@@ -1,8 +1,20 @@
<template>
<router-view />
<div id="app">
<router-view />
</div>
</template>
<script setup lang="ts">
// App.vue 现在只需要渲染路由视图
// 路由器会决定是渲染 Login 组件还是 MainLayout 组件
console.log("App.vue loaded");
</script>
<style>
#app {
width: 100%;
min-height: 100vh;
margin: 0;
padding: 0;
}
</style>