33 lines
549 B
Vue
33 lines
549 B
Vue
<template>
|
|
<div class="app-container">
|
|
<router-view />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
// 主题初始化已在 main.ts 中完成
|
|
</script>
|
|
|
|
<style>
|
|
html, body {
|
|
margin: 0;
|
|
padding: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
/* 使用 PS 主题色 */
|
|
background-color: var(--ps-bg, #323232);
|
|
color: var(--ps-text, #e0e0e0);
|
|
}
|
|
|
|
.app-container {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
background-color: var(--ps-bg, #323232);
|
|
color: var(--ps-text, #e0e0e0);
|
|
}
|
|
</style>
|
|
|