Files
bj_power/bj_power_wms_client/frontend/src/App.vue
T
SunYF 4736343859 style(frontend): add global base style for app
补充全局基础样式,统一页面字体、边距和背景色,修复页面初始样式错乱问题
2026-08-29 15:33:47 +08:00

8 lines
208 B
Vue

<template>
<router-view />
</template>
<style>
html, body, #app { height: 100%; margin: 0; font-family: -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif; }
body { background: #f0f2f5; }
</style>