mirror of
https://github.com/kuaifan/dootask.git
synced 2025-12-12 19:35:50 +00:00
23 lines
458 B
Vue
23 lines
458 B
Vue
<template>
|
||
<div>
|
||
<p><b>{{$L("删除成功")}}</b></p>
|
||
<p> </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>
|