Files
happy-life-star/web-admin/src/App.vue
T
2025-12-27 16:45:38 +08:00

25 lines
516 B
Vue

<template>
<router-view />
</template>
<script setup lang="ts">
</script>
<style lang="scss">
/**
* 全局基础样式(仅样式,不涉及业务逻辑)
* - 由 life-script-theme.scss 提供主题变量与 Element Plus 覆盖
* - 这里保留基础 reset 与高度设置
*/
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body, #app {
height: 100%;
font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}
</style>