Files
Yi.Admin/Yi.Bbs.Vue3/src/layout/activity/components/ActivityBody.vue
2025-08-04 23:29:25 +08:00

37 lines
654 B
Vue

<template>
<div class="sign-box">
<div class="menuList">
<ActivityNav/>
</div>
<div class="page">
<RouterView />
</div>
</div>
</template>
<script setup>
import ActivityNav from './ActivityNav.vue'
</script>
<style lang="scss" scoped>
.sign-box {
display: flex;
justify-content: space-between;
width: 1300px;
height: 100%;
padding: 20px 0 10px;
.menuList {
width: 20%;
height: 100%;
background-color: #1D1E1F;
border: 1px solid rgba(0, 255, 136, 0.2);
}
.page {
width: 75%;
height: 100%;
border: 1px solid rgba(0, 255, 136, 0.2);
background-color: #1D1E1F;
}
}
</style>