2024-10-17 13:06:55 +08:00

19 lines
397 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>
您好我是机器人{{msg.data.nickname}}我的机器人ID是{{msg.data.userid}}你可以发送 <span class="mark-color">/help</span> 查看我支持什么命令
</div>
</template>
<script lang="ts">
export default {
props: {
msg: Object,
},
data() {
return {};
},
computed: {},
methods: {},
}
</script>