15 lines
261 B
Vue
15 lines
261 B
Vue
<template>
|
|
<div class="more-content">您可在此编写任意内容</div>
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
.more-content {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin-top: 20px;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
</style>
|