xiangpei
2025-05-09 a415f5b2c0ae5dffb0a6d7ceca7bea1a6ff4bc64
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<template>
  <div class="reply-message">这是回复的消息[预留]</div>
</template>
 
<script>
export default {
  name: 'ReplyMessage',
  data() {
    return {}
  },
  created() {},
  methods: {},
}
</script>
<style lang="less" scoped>
.reply-message {
  margin-top: 5px;
  min-height: 28px;
  background: #f7f1f1;
  line-height: 28px;
  font-size: 12px;
  padding: 0 10px;
  border-radius: 3px;
  color: #a7a2a2;
}
</style>