mirror of
https://github.com/kuaifan/dootask.git
synced 2025-12-14 04:32:49 +00:00
25 lines
557 B
Vue
25 lines
557 B
Vue
<template>
|
||
<div>
|
||
<p><b>机器人 <span class="mark-color">{{ msg.data.nickname }} (ID:{{ msg.data.userid }})</span> 已加入的会话:</b></p>
|
||
<p> </p>
|
||
|
||
<p><b>会话ID | 会话名称</b></p>
|
||
<p v-for="item in msg.data.list">
|
||
{{ item.id }} | {{ item.name }}{{ item.type == 'user' ? ' (个人)' : '' }}
|
||
</p>
|
||
</div>
|
||
</template>
|
||
|
||
<script lang="ts">
|
||
export default {
|
||
props: {
|
||
msg: Object,
|
||
},
|
||
data() {
|
||
return {};
|
||
},
|
||
computed: {},
|
||
methods: {},
|
||
}
|
||
</script>
|