2024-10-18 21:58:55 +08:00

25 lines
591 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<div>
<p><b>{{$L("机器人")}} <span class="mark-color">{{ msg.data.nickname }} (ID:{{ msg.data.userid }})</span> {{$L("已加入的会话")}}</b></p>
<p>&nbsp;</p>
<p><b>{{$L("会话ID | 会话名称")}}</b></p>
<p v-for="item in msg.data.list">
{{ item.id }} | {{ item.name }}{{ item.type == 'user' ? $L(' (个人)') : '' }}
</p>
</div>
</template>
<script lang="ts">
export default {
props: {
msg: Object,
},
data() {
return {};
},
computed: {},
methods: {},
}
</script>