feat:增加设置模块

This commit is contained in:
2025-06-23 22:42:01 +08:00
parent e09aed87d1
commit 4956c1822e
14 changed files with 184 additions and 8 deletions

View File

@@ -47,6 +47,18 @@
@click="sendCommentClick"
class="send-button">发送</el-button>
</div>
<div class="moment-comment-list">
<div class="moment-comment-item">
<span class="name">Cxx</span>
<span>确实很不错</span>
</div>
<div class="moment-comment-item">
<span class="name">Cxx</span>
<span>确实很不错阿</span>
</div>
</div>
</div>
</div>
</template>
@@ -100,6 +112,21 @@ const sendCommentClick = async () => {
justify-items: center;
gap: 5px;
}
.moment-comment-list {
padding: 10px;
background-color: var(--color-comment-bg);
display: flex;
flex-direction: column;
gap: 5px;
.moment-comment-item {
.name {
font-weight: bold;
}
}
}
}
}
</style>