Files
Yi.Admin/Yi.Bbs.Vue3/src/layout/AppBody.vue

16 lines
232 B
Vue
Raw Normal View History

2023-12-24 20:05:34 +08:00
<template>
2023-12-20 21:52:42 +08:00
<div class="content-main">
<RouterView />
</div>
2023-12-14 10:15:23 +08:00
</template>
<style scoped>
2023-12-20 21:52:42 +08:00
.content-main {
2023-12-24 20:05:34 +08:00
width: 100%;
2024-06-05 23:23:33 +08:00
/* height: 100%; */
2023-12-20 21:52:42 +08:00
display: flex;
justify-content: center;
2023-12-24 20:05:34 +08:00
/* min-height: 1150px; */
2023-12-14 10:15:23 +08:00
}
2023-12-20 21:52:42 +08:00
</style>