2024-10-30 12:53:14 +08:00

23 lines
458 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("删除成功")}}</b></p>
<p>&nbsp;</p>
<p>{{$L("机器人ID")}}<span class="mark-color">{{ msg.data.userid }}</span></p>
<p>{{$L("机器人名称")}}<span class="mark-color">{{ msg.data.nickname }}</span></p>
</div>
</template>
<script>
export default {
props: {
msg: Object,
},
data() {
return {};
},
computed: {},
methods: {},
}
</script>