aslan-h5/src/components/PageContainer.vue

17 lines
292 B
Vue

<template>
<div class="page-container">
<slot />
</div>
</template>
<script setup>
// 页面容器组件,提供统一的背景
</script>
<style scoped>
.page-container {
background: linear-gradient(180deg, #e8d5ff 0%, #f5f1ff 50%, #ffffff 100%);
min-height: 100vh;
}
</style>