mirror of
https://github.com/kuaifan/dootask.git
synced 2025-12-12 03:01:12 +00:00
24 lines
538 B
Vue
24 lines
538 B
Vue
<template>
|
||
<div>
|
||
<p><b>设置Webhook地址。</b></p>
|
||
<p> </p>
|
||
|
||
<p>机器人ID:<span class="mark-color">{{ msg.data.userid }}</span></p>
|
||
<p>机器人名称:<span class="mark-color">{{ msg.data.nickname }}</span></p>
|
||
<p>Webhook地址:<span class="mark-color">{{ msg.data.webhook_url }}</span></p>
|
||
</div>
|
||
</template>
|
||
|
||
<script lang="ts">
|
||
export default {
|
||
props: {
|
||
msg: Object,
|
||
},
|
||
data() {
|
||
return {};
|
||
},
|
||
computed: {},
|
||
methods: {},
|
||
}
|
||
</script>
|