Files
Yi.Framework/Yi.Bbs.Vue3/src/layout/AppBody.vue
2023-12-24 20:05:34 +08:00

16 lines
226 B
Vue

<template>
<div class="content-main">
<RouterView />
</div>
</template>
<style scoped>
.content-main {
width: 100%;
height: 100%;
display: flex;
justify-content: center;
/* min-height: 1150px; */
}
</style>