16 lines
226 B
Vue
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>
|