mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-19 16:06:36 +08:00
16 lines
232 B
Vue
16 lines
232 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>
|