Files
trade-assistant/uni-app/src/App.vue
T
TradeMate Dev 04f7ff0317 fix: CORS/API 500 issues, switch to native tabbar, restore quick-actions
- Backend: guest UUID format fix, /auth/me guest branch, UUID validation in deps.py, CORS config fix
- Frontend: switch to native tabbar (custom: false), cleanup App.vue, redesign quick-actions with colored icons, conditional wechat login, proxy API requests via Vite
2026-05-13 17:54:13 +08:00

32 lines
560 B
Vue

<template>
<!-- Uni-app manages its own page/tabbar structure. App.vue only provides global styles. -->
<router-view />
</template>
<script setup>
// App root - uni-app framework handles page layout and tab bar
</script>
<style>
/* Global reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body, #app {
height: 100%;
width: 100%;
}
/* Let uni-app framework manage layout for native tabbar */
uni-page {
overflow-y: auto !important;
}
uni-page-body {
overflow-y: auto !important;
min-height: 100% !important;
}
</style>